mastodon/storybook/stories/loading_indicator.story.js

13 lines
398 B
JavaScript
Raw Normal View History

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