about summary refs log tree commit diff
path: root/storybook/stories/loading_indicator.story.js
diff options
context:
space:
mode:
Diffstat (limited to 'storybook/stories/loading_indicator.story.js')
-rw-r--r--storybook/stories/loading_indicator.story.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/storybook/stories/loading_indicator.story.js b/storybook/stories/loading_indicator.story.js
deleted file mode 100644
index 6ee822758..000000000
--- a/storybook/stories/loading_indicator.story.js
+++ /dev/null
@@ -1,12 +0,0 @@
-import React from 'react';
-import { IntlProvider } from 'react-intl';
-import { storiesOf } from '@storybook/react';
-import en from 'mastodon/locales/en.json';
-import LoadingIndicator from 'mastodon/components/loading_indicator';
-
-storiesOf('LoadingIndicator', module)
-  .add('default state', () => (
-    <IntlProvider locale='en' messages={en}>
-      <LoadingIndicator />
-    </IntlProvider>
-  ));