diff --git a/src/components/Pages/MadeWithLove.stories.tsx b/src/components/Pages/MadeWithLove.stories.tsx index f96e8e03..047fd30a 100644 --- a/src/components/Pages/MadeWithLove.stories.tsx +++ b/src/components/Pages/MadeWithLove.stories.tsx @@ -1,13 +1,6 @@ import { createUseStyles } from 'react-jss' +import { MadeWithLove } from './MadeWithLove' import React from 'react' -import { - faAws, - faGithub, - faLinkedin, - faSlack, - faTwitterSquare -} from '@fortawesome/free-brands-svg-icons' -import { FooterLinksConfig, MadeWithLove } from './MadeWithLove' import { Meta, Story } from '@storybook/react' export default { @@ -21,35 +14,12 @@ const useStyles = createUseStyles({ } }) -const footerLinksConfig: FooterLinksConfig[] = [ - { - href: 'http://www.twitter.com', - icon: faTwitterSquare - }, - { - href: 'http://www.linkedin.com', - icon: faLinkedin - }, - { - href: 'https://github.com/dassana-io/dassana', - icon: faGithub - }, - { - href: 'https://www.slack.com', - icon: faSlack - }, - { - href: 'https://github.com/dassana-io/dassana', - icon: faAws - } -] - const DecoratedTemplate = () => { const classes = useStyles() return (