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/NavButton';
import Footer from './Footer';
storiesOf('Footer', module)
.addDecorator(story => {story()})
.add(
'Footer',
() => {
return (
);
},
{
notes: 'Displaying a Home NavButton'
}
);