mastodon/storybook/stories/autosuggest_textarea.story.js

19 lines
724 B
JavaScript
Raw Normal View History

2017-05-13 15:55:56 +02:00
import React from 'react';
import { List } from 'immutable';
2017-06-04 16:26:07 +02:00
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import AutosuggestTextarea from 'mastodon/components/autosuggest_textarea';
2017-05-13 15:55:56 +02:00
const props = {
onChange: action('changed'),
onPaste: action('pasted'),
onSuggestionSelected: action('suggestionsSelected'),
onSuggestionsClearRequested: action('suggestionsClearRequested'),
onSuggestionsFetchRequested: action('suggestionsFetchRequested'),
suggestions: List([]),
};
2017-05-13 15:55:56 +02:00
storiesOf('AutosuggestTextarea', module)
.add('default state', () => <AutosuggestTextarea value='' {...props} />)
.add('with text', () => <AutosuggestTextarea value='Hello' {...props} />);