mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
b27066e154
Fix #205, fix #156, fix #124
6 lines
319 B
JavaScript
6 lines
319 B
JavaScript
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' />)
|