about summary refs log tree commit diff
path: root/app/javascript/themes/glitch/features/generic_not_found/index.js
blob: ccd2b87b2f8a050ff2e65d9bb77d32aa519d939c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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;