This repository has been archived on 2019-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/storybook/stories/loading_indicator.story.jsx

7 lines
315 B
React
Raw Normal View History

import { storiesOf } from '@kadira/storybook';
import LoadingIndicator from '../../app/assets/javascripts/components/components/loading_indicator.jsx'
import { IntlProvider } from 'react-intl';
storiesOf('LoadingIndicator', module)
.add('default state', () => <IntlProvider><LoadingIndicator /></IntlProvider>);