You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

9 lines
507 B

import React from 'react'
import { storiesOf } from '@storybook/react'
import { Notification } from 'components/UI'
storiesOf('Components.Notification', module)
.add('Success', () => <Notification variant="success">Success message</Notification>)
.add('Warning', () => <Notification variant="warning">Warning message</Notification>)
.add('Error', () => <Notification variant="error">Error message</Notification>)
.add('Processing', () => <Notification processing>Processing message</Notification>)