import { storiesOf } from '@storybook/react'; import { ThemeProvider } from 'styled-components'; import { theme } from '../../styles/theme'; import GivingItem from './GivingItem'; storiesOf('GivingItem', module) .addDecorator(story => {story()}) .add( 'default', () => { const description = 'Lucky money for abcpros team'; const givingDate = new Date(); const givingAmount = '10002'; const ticker = 'XPI'; const giftNumber = 5; return ( ); }, { notes: 'Displaying a GivingItem' } );