18F/e-QIP-prototype

View on GitHub
src/components/Form/Telephone/Telephone.stories.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react'
import { storiesOf } from '@storybook/react'

import Telephone from './Telephone'

storiesOf('Telephone', module)
  .add('Domestic', () => (
    <Telephone
      allowNotApplicable={false}
    />
  ))
  .add('international', () => (
    <Telephone
      allowNotApplicable={false}
      type="International"
    />
  ))
  .add('with not applicable', () => (
    <Telephone />
  ))