import React from 'react';
import { storiesOf } from '@storybook/react';
import ModalStory from './modal/ModalStory';
import Button from '../general/button/button';
import Container from '../grid/container/container';
import { AlertStory } from './alert/alertStory';
import { NotificationStory } from './notification/notificationStory';

storiesOf('Feedback', module)
  .add('Modal', ModalStory, {
    props: {
      propTablesExclude: [
        Button,
        Container
      ],
    },
  })
  .add('Alert', AlertStory, {
    props: {
      propTablesExclude: [
        Container, Button
      ]
    }
  })
  .add('Notification', NotificationStory, {
    props: {
      propTablesExclude: [
        Container, Button
      ]
    }
  });