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.

17 lines
574 B

  1. import React from 'react';
  2. import { FormattedMessage } from 'react-intl';
  3. const MissingIndicator = () => (
  4. <div className='regeneration-indicator missing-indicator'>
  5. <div>
  6. <div className='regeneration-indicator__figure' />
  7. <div className='regeneration-indicator__label'>
  8. <FormattedMessage id='missing_indicator.label' tagName='strong' defaultMessage='Not found' />
  9. <FormattedMessage id='missing_indicator.sublabel' defaultMessage='This resource could not be found' />
  10. </div>
  11. </div>
  12. </div>
  13. );
  14. export default MissingIndicator;