import React from 'react'
import { storiesOf } from '@storybook/react'
import { Notification } from 'components/UI'
storiesOf('Components', module).addWithChapters('Notification', {
subtitle: 'For displaying important messages.',
chapters: [
{
sections: [
{
title: 'Success',
sectionFn: () => Success notification
},
{
title: 'Warning',
sectionFn: () => Warning notification
},
{
title: 'Error',
sectionFn: () => Error notification
},
{
title: 'Processing',
sectionFn: () => (
Processing notification
)
}
]
}
]
})