From eff94164696ecb126ab47b85ee842e65692b649a Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Fri, 23 Jun 2017 23:05:04 +0900 Subject: Remove unused variables (#3906) --- storybook/config.js | 1 - storybook/stories/character_counter.story.js | 1 - storybook/stories/loading_indicator.story.js | 1 - 3 files changed, 3 deletions(-) (limited to 'storybook') diff --git a/storybook/config.js b/storybook/config.js index 1078059a7..87479560f 100644 --- a/storybook/config.js +++ b/storybook/config.js @@ -1,5 +1,4 @@ import { configure } from '@storybook/react'; -import React from 'react'; import { addLocaleData } from 'react-intl'; import en from 'react-intl/locale-data/en'; import '../app/javascript/styles/application.scss'; diff --git a/storybook/stories/character_counter.story.js b/storybook/stories/character_counter.story.js index 15a401a25..39d9afb56 100644 --- a/storybook/stories/character_counter.story.js +++ b/storybook/stories/character_counter.story.js @@ -1,6 +1,5 @@ import React from 'react'; import { storiesOf } from '@storybook/react'; -import { action } from '@storybook/addon-actions'; import CharacterCounter from 'mastodon/features/compose/components/character_counter'; storiesOf('CharacterCounter', module) diff --git a/storybook/stories/loading_indicator.story.js b/storybook/stories/loading_indicator.story.js index 3e12f61ca..6ee822758 100644 --- a/storybook/stories/loading_indicator.story.js +++ b/storybook/stories/loading_indicator.story.js @@ -1,7 +1,6 @@ import React from 'react'; import { IntlProvider } from 'react-intl'; import { storiesOf } from '@storybook/react'; -import { action } from '@storybook/addon-actions'; import en from 'mastodon/locales/en.json'; import LoadingIndicator from 'mastodon/components/loading_indicator'; -- cgit