You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
319 B

  1. import { storiesOf } from '@kadira/storybook';
  2. import AutosuggestTextarea from '../../app/assets/javascripts/components/components/autosuggest_textarea.jsx'
  3. storiesOf('AutosuggestTextarea', module)
  4. .add('default state', () => <AutosuggestTextarea />)
  5. .add('with text', () => <AutosuggestTextarea value='Hello' />)