blob: 4412adaedcf2f8337c68e0eca8bd987f560386f0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import React from 'react';
import Column from 'flavours/glitch/features/ui/components/column';
import MissingIndicator from 'flavours/glitch/components/missing_indicator';
const GenericNotFound = () => (
<Column>
<MissingIndicator fullPage />
</Column>
);
export default GenericNotFound;
|