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.
11 lines
274 B
11 lines
274 B
8 years ago
|
import React from 'react';
|
||
8 years ago
|
import { FormattedMessage } from 'react-intl';
|
||
|
|
||
8 years ago
|
const LoadingIndicator = () => (
|
||
8 years ago
|
<div className='loading-indicator'>
|
||
8 years ago
|
<FormattedMessage id='loading_indicator.label' defaultMessage='Loading...' />
|
||
|
</div>
|
||
|
);
|
||
|
|
||
8 years ago
|
export default LoadingIndicator;
|