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-12-03 23:26:40 -08:00
|
|
|
import React from 'react';
|
|
|
|
import Column from 'flavours/glitch/features/ui/components/column';
|
|
|
|
import MissingIndicator from 'flavours/glitch/components/missing_indicator';
|
|
|
|
|
|
|
|
const GenericNotFound = () => (
|
|
|
|
<Column>
|
2019-10-06 13:11:17 -07:00
|
|
|
<MissingIndicator fullPage />
|
2017-12-03 23:26:40 -08:00
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default GenericNotFound;
|