about summary refs log tree commit diff
path: root/storybook/stories/autosuggest_textarea.story.jsx
blob: 7d84ff1e15b06c73e5fb17027dc4b55ccbfa57f9 (plain) (blame)
1
2
3
4
5
6
import { storiesOf } from '@kadira/storybook';
import AutosuggestTextarea from '../../app/assets/javascripts/components/components/autosuggest_textarea.jsx'

storiesOf('AutosuggestTextarea', module)
  .add('default state', () => <AutosuggestTextarea />)
  .add('with text', () => <AutosuggestTextarea value='Hello' />)