mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-17 20:32:56 +00:00
81ef21a0c8
Port 44a7d87cb1
to glitch-soc
Signed-off-by: Claire <claire.github-309c@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;
|