1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/javascript/mastodon/components/loading_indicator.js

12 lines
324 B
JavaScript
Raw Normal View History

import React from 'react';
import { FormattedMessage } from 'react-intl';
2017-01-10 04:50:40 -08:00
const LoadingIndicator = () => (
<div className='loading-indicator'>
<div className='loading-indicator__figure' />
2017-01-10 04:50:40 -08:00
<FormattedMessage id='loading_indicator.label' defaultMessage='Loading...' />
</div>
);
export default LoadingIndicator;