18F/e-QIP-prototype

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

Summary

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

import HairColor from './HairColor'

storiesOf('HairColor', module)
  .add('default', () => (
    <HairColor />
  ))
  .add('with error', () => (
    <HairColor
      className="usa-input-error"
    />
  ))