This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-02 17:04:16 -07:00
|
|
|
import React from 'react';
|
2016-11-16 08:20:52 -08:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
2017-01-10 04:50:40 -08:00
|
|
|
const LoadingIndicator = () => (
|
2017-04-22 19:26:55 -07:00
|
|
|
<div className='loading-indicator'>
|
2017-07-23 11:28:18 -07:00
|
|
|
<div className='loading-indicator__figure' />
|
2017-01-10 04:50:40 -08:00
|
|
|
<FormattedMessage id='loading_indicator.label' defaultMessage='Loading...' />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
2016-10-06 13:47:35 -07:00
|
|
|
export default LoadingIndicator;
|