summaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/pages/notfound/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/anastasis-webui/src/pages/notfound/index.tsx')
-rw-r--r--packages/anastasis-webui/src/pages/notfound/index.tsx16
1 files changed, 0 insertions, 16 deletions
diff --git a/packages/anastasis-webui/src/pages/notfound/index.tsx b/packages/anastasis-webui/src/pages/notfound/index.tsx
deleted file mode 100644
index 4e74d1d9f..000000000
--- a/packages/anastasis-webui/src/pages/notfound/index.tsx
+++ /dev/null
@@ -1,16 +0,0 @@
-import { FunctionalComponent, h } from 'preact';
-import { Link } from 'preact-router/match';
-
-const Notfound: FunctionalComponent = () => {
- return (
- <div>
- <h1>Error 404</h1>
- <p>That page doesn&apos;t exist.</p>
- <Link href="/">
- <h4>Back to Home</h4>
- </Link>
- </div>
- );
-};
-
-export default Notfound;