mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
7 lines
319 B
React
7 lines
319 B
React
|
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' />)
|