This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-05-13 15:55:56 +02:00
|
|
|
import React from 'react';
|
|
|
|
import { IntlProvider } from 'react-intl';
|
|
|
|
import { storiesOf } from '@kadira/storybook';
|
2017-05-25 05:23:14 +02:00
|
|
|
import en from 'mastodon/locales/en.json';
|
2017-05-13 15:55:56 +02:00
|
|
|
import LoadingIndicator from 'mastodon/components/loading_indicator';
|
|
|
|
|
|
|
|
storiesOf('LoadingIndicator', module)
|
|
|
|
.add('default state', () => (
|
2017-05-25 05:23:14 +02:00
|
|
|
<IntlProvider locale='en' messages={en}>
|
2017-05-13 15:55:56 +02:00
|
|
|
<LoadingIndicator />
|
|
|
|
</IntlProvider>
|
|
|
|
));
|