1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-25 06:55:12 +00: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' />)