glitch-social/storybook/stories/loading_indicator.story.js

13 lines
398 B
JavaScript
Raw Normal View History

2017-05-13 14:55:56 +01:00
import React from 'react';
import { IntlProvider } from 'react-intl';
2017-06-04 15:26:07 +01:00
import { storiesOf } from '@storybook/react';
2017-05-25 04:23:14 +01:00
import en from 'mastodon/locales/en.json';
2017-05-13 14:55:56 +01:00
import LoadingIndicator from 'mastodon/components/loading_indicator';
storiesOf('LoadingIndicator', module)
.add('default state', () => (
2017-05-25 04:23:14 +01:00
<IntlProvider locale='en' messages={en}>
2017-05-13 14:55:56 +01:00
<LoadingIndicator />
</IntlProvider>
));