1
0
mirror of https://github.com/mastodon/mastodon.git synced 2024-12-21 10:35:00 +01:00
mastodon/storybook/stories/autosuggest_textarea.story.jsx

7 lines
319 B
React
Raw Normal View History

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' />)