about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/generic_not_found/index.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/mastodon/features/generic_not_found/index.jsx')
-rw-r--r--app/javascript/mastodon/features/generic_not_found/index.jsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/javascript/mastodon/features/generic_not_found/index.jsx b/app/javascript/mastodon/features/generic_not_found/index.jsx
new file mode 100644
index 000000000..41cd61a5f
--- /dev/null
+++ b/app/javascript/mastodon/features/generic_not_found/index.jsx
@@ -0,0 +1,11 @@
+import React from 'react';
+import Column from '../ui/components/column';
+import MissingIndicator from '../../components/missing_indicator';
+
+const GenericNotFound = () => (
+  <Column>
+    <MissingIndicator fullPage />
+  </Column>
+);
+
+export default GenericNotFound;