This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-12-14 18:21:31 +01:00
|
|
|
import { storiesOf } from '@kadira/storybook';
|
|
|
|
import AutosuggestTextarea from '../../app/assets/javascripts/components/components/autosuggest_textarea.jsx'
|
|
|
|
|
|
|
|
storiesOf('AutosuggestTextarea', module)
|
2017-03-02 18:55:15 +01:00
|
|
|
.add('default state', () => <AutosuggestTextarea value='' suggestions={[]} />)
|
|
|
|
.add('with text', () => <AutosuggestTextarea value='Hello' suggestions={[]} />)
|