src/components/Form/Modal/Modal.stories.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react'
import { storiesOf } from '@storybook/react'

import Modal from './Modal'

storiesOf('Modal', module)
  .add('default', () => (
    <Modal
      show
    >
      <h3>Modal title</h3>
      <p>Content that shows within the modal body</p>
    </Modal>
  ))
  .add('closable', () => (
    <Modal
      show
      closeable
    >
      <h3>Modal title</h3>
      <p>Content that shows within the modal body</p>
    </Modal>
  ))