闭社主体 forked from https://github.com/tootsuite/mastodon
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.

12 lines
433 B

  1. import React from 'react';
  2. import { IntlProvider } from 'react-intl';
  3. import { storiesOf } from '@kadira/storybook';
  4. import getMessagesForLocale from 'mastodon/locales';
  5. import LoadingIndicator from 'mastodon/components/loading_indicator';
  6. storiesOf('LoadingIndicator', module)
  7. .add('default state', () => (
  8. <IntlProvider locale='en' messages={getMessagesForLocale('en')}>
  9. <LoadingIndicator />
  10. </IntlProvider>
  11. ));