import * as React from 'react'
import { storiesOf } from '@storybook/react'
import { Footer } from './Footer'
import './Footer.stories.css'

storiesOf('Footer', module)
  .add('Uncontrolled', () => <Footer />)
  .add('Controlled', () => (
    <Footer locale="en" locales={['en', 'es', 'fr', 'ja', 'ko', 'zh']} />
  ))
  .add('Full width inner container', () => (
    <div className="Footer-fullwidth-container">
      <Footer isFullWidth />
    </div>
  ))
  .add('Without the social links', () => <Footer hideSocialLinks />)
