]> cat aescling's git repositories - mastodon.git/blob - app/javascript/mastodon/components/loading_indicator.js
d6a5adb6fe7c0f9cd8ddbe9d0bbbc9617da04fac
[mastodon.git] / app / javascript / mastodon / components / loading_indicator.js
1 import React from 'react';
2 import { FormattedMessage } from 'react-intl';
3
4 const LoadingIndicator = () => (
5 <div className='loading-indicator'>
6 <div className='loading-indicator__figure' />
7 <FormattedMessage id='loading_indicator.label' defaultMessage='Loading...' />
8 </div>
9 );
10
11 export default LoadingIndicator;
This page took 0.059488 seconds and 2 git commands to generate.