From 1027556614febb096f2186d3c678116b415c0b9b Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Sat, 13 May 2017 22:55:56 +0900 Subject: Fix broken storybook (#3030) --- storybook/stories/character_counter.story.jsx | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 storybook/stories/character_counter.story.jsx (limited to 'storybook/stories/character_counter.story.jsx') diff --git a/storybook/stories/character_counter.story.jsx b/storybook/stories/character_counter.story.jsx deleted file mode 100644 index 931d8a037..000000000 --- a/storybook/stories/character_counter.story.jsx +++ /dev/null @@ -1,20 +0,0 @@ -import { storiesOf } from '@kadira/storybook'; -import CharacterCounter from '../../app/assets/javascripts/components/features/compose/components/character_counter'; - -storiesOf('CharacterCounter', module) - .add('no text', () => { - const text = ''; - return ; - }) - .add('a few strings text', () => { - const text = '0123456789'; - return ; - }) - .add('the same text', () => { - const text = '01234567890123456789'; - return ; - }) - .add('over text', () => { - const text = '01234567890123456789012345678901234567890123456789'; - return ; - }); -- cgit