mirror of https://github.com/mastodon/mastodon
Merge branch 'fix_626' of https://github.com/rmhasan/mastodon into rmhasan-fix_626
commit
4bb8ff7c8e
@ -0,0 +1,16 @@
|
|||||||
|
import { FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
|
const style = {
|
||||||
|
textAlign: 'center',
|
||||||
|
fontSize: '16px',
|
||||||
|
fontWeight: '500',
|
||||||
|
paddingTop: '120px'
|
||||||
|
};
|
||||||
|
|
||||||
|
const StatusNotFound = () => (
|
||||||
|
<div className='status-not-found-indicator' style={style}>
|
||||||
|
<FormattedMessage id='status_not_found_indicator.label' defaultMessage='Status Not Found' />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
|
||||||
|
export default StatusNotFound;
|
Loading…
Reference in New Issue