mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 08:44:27 +00:00
18 lines
356 B
JavaScript
18 lines
356 B
JavaScript
import { FormattedMessage } from 'react-intl';
|
|
|
|
const style = {
|
|
textAlign: 'center',
|
|
fontSize: '16px',
|
|
fontWeight: '500',
|
|
color: '#616b86',
|
|
paddingTop: '120px'
|
|
};
|
|
|
|
const MissingIndicator = () => (
|
|
<div style={style}>
|
|
<FormattedMessage id='missing_indicator.label' defaultMessage='Not found' />
|
|
</div>
|
|
);
|
|
|
|
export default MissingIndicator;
|