import { HomeOutlined, GiftOutlined, WalletOutlined, UserOutlined } from '@ant-design/icons'; import { storiesOf } from '@storybook/react'; import { ThemeProvider } from 'styled-components'; import { theme } from '../../styles/theme'; import { NavButton } from './NavButton'; storiesOf('NavButton', module) .addDecorator(story => {story()}) .add( 'Home NavButton', () => { return ( Home ); }, { notes: 'Displaying a Home NavButton' } ) .add( 'My Giving NavButton', () => { return ( My Giving ); }, { notes: 'Displaying a Home NavButton' } ) .add( 'My Receive', () => { return ( My Receive ); }, { notes: 'Displaying a MyReceive NavButton' } ) .add( 'Profile NavButton', () => { return ( Profile ); }, { notes: 'Displaying a Home NavButton' } );