mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 14:04:39 +00:00
9ba67c6045
Port front-end changes from f665901e3c
to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com>
12 lines
298 B
JavaScript
12 lines
298 B
JavaScript
import React from 'react';
|
|
import Column from 'flavours/glitch/features/ui/components/column';
|
|
import MissingIndicator from 'flavours/glitch/components/missing_indicator';
|
|
|
|
const GenericNotFound = () => (
|
|
<Column>
|
|
<MissingIndicator fullPage />
|
|
</Column>
|
|
);
|
|
|
|
export default GenericNotFound;
|