mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-16 11:45:19 +00:00
12 lines
285 B
JavaScript
12 lines
285 B
JavaScript
import React from 'react';
|
|
import Column from 'themes/glitch/features/ui/components/column';
|
|
import MissingIndicator from 'themes/glitch/components/missing_indicator';
|
|
|
|
const GenericNotFound = () => (
|
|
<Column>
|
|
<MissingIndicator />
|
|
</Column>
|
|
);
|
|
|
|
export default GenericNotFound;
|