This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-02 17:04:16 -07:00
|
|
|
import React from 'react';
|
2017-01-10 04:50:40 -08:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
|
|
|
const MissingIndicator = () => (
|
2017-02-08 16:20:09 -08:00
|
|
|
<div className='missing-indicator'>
|
2017-05-02 17:04:16 -07:00
|
|
|
<div>
|
|
|
|
<FormattedMessage id='missing_indicator.label' defaultMessage='Not found' />
|
|
|
|
</div>
|
2017-01-10 04:50:40 -08:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default MissingIndicator;
|