Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ui-component-library / stories / abstractions / Footer.story.tsx
Size: Mime:
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} />
))