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.

12 lines
296 B

  1. import React from 'react';
  2. import { FormattedMessage } from 'react-intl';
  3. const MissingIndicator = () => (
  4. <div className='missing-indicator'>
  5. <div>
  6. <FormattedMessage id='missing_indicator.label' defaultMessage='Not found' />
  7. </div>
  8. </div>
  9. );
  10. export default MissingIndicator;