2017-12-04 16:26:40 +09: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-07 05:11:17 +09:00
|
|
|
<MissingIndicator fullPage />
|
2017-12-04 16:26:40 +09:00
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default GenericNotFound;
|