This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-02 17:04:16 -07:00
|
|
|
import React from 'react';
|
2017-11-17 19:11:18 -08:00
|
|
|
import Column from 'themes/glitch/features/ui/components/column';
|
|
|
|
import MissingIndicator from 'themes/glitch/components/missing_indicator';
|
2017-01-10 04:50:40 -08:00
|
|
|
|
|
|
|
const GenericNotFound = () => (
|
|
|
|
<Column>
|
|
|
|
<MissingIndicator />
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default GenericNotFound;
|