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
289 B

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