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.

10 lines
274 B

  1. import React from 'react';
  2. import { FormattedMessage } from 'react-intl';
  3. const LoadingIndicator = () => (
  4. <div className='loading-indicator'>
  5. <FormattedMessage id='loading_indicator.label' defaultMessage='Loading...' />
  6. </div>
  7. );
  8. export default LoadingIndicator;