about summary refs log tree commit diff
path: root/storybook/stories/autosuggest_textarea.story.jsx
blob: 72a4b525d633cbda2a3a86ce6558aba8592679c6 (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 value='' suggestions={[]} />)
  .add('with text', () => <AutosuggestTextarea value='Hello' suggestions={[]} />)