2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-01-10 12:50:40 +00:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
|
|
|
const MissingIndicator = () => (
|
2018-01-17 22:56:03 +00:00
|
|
|
<div className='regeneration-indicator missing-indicator'>
|
2017-05-03 00:04:16 +00:00
|
|
|
<div>
|
2018-01-17 22:56:03 +00:00
|
|
|
<div className='regeneration-indicator__figure' />
|
|
|
|
|
|
|
|
<div className='regeneration-indicator__label'>
|
|
|
|
<FormattedMessage id='missing_indicator.label' tagName='strong' defaultMessage='Not found' />
|
|
|
|
<FormattedMessage id='missing_indicator.sublabel' defaultMessage='This resource could not be found' />
|
|
|
|
</div>
|
2017-05-03 00:04:16 +00:00
|
|
|
</div>
|
2017-01-10 12:50:40 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default MissingIndicator;
|