Repository URL to install this package:
Version:
0.9.6 ▾
|
import React from 'react'
import { storiesOf } from '@storybook/react'
import Footer from 'abstractions/Footer'
const socialIconData = [{}, {}, {}, {}, {}]
const listOfLinks = [
{
list: [{}, {}, {}, {}],
},
{
list: [{}, {}, {}, {}],
},
{
list: [{}, {}, {}, {}],
},
{
list: [{}, {}, {}, {}],
},
]
storiesOf('abstractions/Footer', module).add('Footer', () => (
<Footer socialIconData={socialIconData} listOfLinks={listOfLinks} />
))