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.
26 lines
686 B
26 lines
686 B
import { FormattedMessage } from 'react-intl'; |
|
|
|
import { GIF } from './gif'; |
|
|
|
export const RegenerationIndicator: React.FC = () => ( |
|
<div className='regeneration-indicator'> |
|
<GIF |
|
src='/loading.gif' |
|
staticSrc='/loading.png' |
|
className='regeneration-indicator__figure' |
|
/> |
|
|
|
<div className='regeneration-indicator__label'> |
|
<strong> |
|
<FormattedMessage |
|
id='regeneration_indicator.preparing_your_home_feed' |
|
defaultMessage='Preparing your home feed…' |
|
/> |
|
</strong> |
|
<FormattedMessage |
|
id='regeneration_indicator.please_stand_by' |
|
defaultMessage='Please stand by.' |
|
/> |
|
</div> |
|
</div> |
|
);
|
|
|