about summary refs log tree commit diff
path: root/storybook/stories/autosuggest_textarea.story.jsx
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2017-05-13 22:55:56 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-05-13 15:55:56 +0200
commit1027556614febb096f2186d3c678116b415c0b9b (patch)
treee8a335e835df865e022f6f4640d6982df51a944d /storybook/stories/autosuggest_textarea.story.jsx
parent3dcb5fa28f13f597d49b5b442f61d12bc2be6152 (diff)
Fix broken storybook (#3030)
Diffstat (limited to 'storybook/stories/autosuggest_textarea.story.jsx')
-rw-r--r--storybook/stories/autosuggest_textarea.story.jsx6
1 files changed, 0 insertions, 6 deletions
diff --git a/storybook/stories/autosuggest_textarea.story.jsx b/storybook/stories/autosuggest_textarea.story.jsx
deleted file mode 100644
index 72a4b525d..000000000
--- a/storybook/stories/autosuggest_textarea.story.jsx
+++ /dev/null
@@ -1,6 +0,0 @@
-import { storiesOf } from '@kadira/storybook';
-import AutosuggestTextarea from '../../app/assets/javascripts/components/components/autosuggest_textarea.jsx'
-
-storiesOf('AutosuggestTextarea', module)
-  .add('default state', () => <AutosuggestTextarea value='' suggestions={[]} />)
-  .add('with text', () => <AutosuggestTextarea value='Hello' suggestions={[]} />)