logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

loading_indicator.js (324B)


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