blob: d6a5adb6fe7c0f9cd8ddbe9d0bbbc9617da04fac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import React from 'react';
import { FormattedMessage } from 'react-intl';
const LoadingIndicator = () => (
<div className='loading-indicator'>
<div className='loading-indicator__figure' />
<FormattedMessage id='loading_indicator.label' defaultMessage='Loading...' />
</div>
);
export default LoadingIndicator;
|