mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
11 lines
230 B
JavaScript
11 lines
230 B
JavaScript
import Column from '../ui/components/column';
|
|
import MissingIndicator from '../../components/missing_indicator';
|
|
|
|
const GenericNotFound = () => (
|
|
<Column>
|
|
<MissingIndicator />
|
|
</Column>
|
|
);
|
|
|
|
export default GenericNotFound;
|