This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/javascript/themes/glitch/features/generic_not_found/index.js
2017-11-17 19:29:16 -08:00

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;