You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
266 B

  1. import React from 'react';
  2. import Column from '../ui/components/column';
  3. import MissingIndicator from '../../components/missing_indicator';
  4. const GenericNotFound = () => (
  5. <Column>
  6. <MissingIndicator fullPage />
  7. </Column>
  8. );
  9. export default GenericNotFound;