闭社主体 forked from https://github.com/tootsuite/mastodon
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.

18 lines
672 B

  1. import React from 'react';
  2. import { FormattedMessage } from 'react-intl';
  3. import illustration from 'mastodon/../images/elephant_ui_working.svg';
  4. const RegenerationIndicator = () => (
  5. <div className='regeneration-indicator'>
  6. <div className='regeneration-indicator__figure'>
  7. <img src={illustration} alt='' />
  8. </div>
  9. <div className='regeneration-indicator__label'>
  10. <FormattedMessage id='regeneration_indicator.label' tagName='strong' defaultMessage='Loading&hellip;' />
  11. <FormattedMessage id='regeneration_indicator.sublabel' defaultMessage='Your home feed is being prepared!' />
  12. </div>
  13. </div>
  14. );
  15. export default RegenerationIndicator;