You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
433 B
13 lines
433 B
8 years ago
|
import React from 'react';
|
||
|
import { IntlProvider } from 'react-intl';
|
||
|
import { storiesOf } from '@kadira/storybook';
|
||
|
import getMessagesForLocale from 'mastodon/locales';
|
||
|
import LoadingIndicator from 'mastodon/components/loading_indicator';
|
||
|
|
||
|
storiesOf('LoadingIndicator', module)
|
||
|
.add('default state', () => (
|
||
|
<IntlProvider locale='en' messages={getMessagesForLocale('en')}>
|
||
|
<LoadingIndicator />
|
||
|
</IntlProvider>
|
||
|
));
|