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
398 B

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