From a2ad2913e4a65e45cd91f69a155898d4127ec7d4 Mon Sep 17 00:00:00 2001 From: Davenludd Date: Mon, 18 Mar 2024 19:34:15 +0100 Subject: [PATCH] Add NotFoundPage component --- frontend/src/Pages/NotFoundPage.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 frontend/src/Pages/NotFoundPage.tsx diff --git a/frontend/src/Pages/NotFoundPage.tsx b/frontend/src/Pages/NotFoundPage.tsx new file mode 100644 index 0000000..cae9861 --- /dev/null +++ b/frontend/src/Pages/NotFoundPage.tsx @@ -0,0 +1,18 @@ +import Button from "../Components/Button"; + +export default function NotFoundPage(): JSX.Element { + return ( +
+

404 Page Not Found

+ +
+ ); +}