1
0
mirror of https://github.com/mastodon/mastodon synced 2025-01-22 09:43:25 +09:00
mastodon/storybook/stories/autosuggest_textarea.story.jsx
2016-12-14 18:21:31 +01:00

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