From e639e2cdf9507eb55f543cac2ca3cc7907f279f6 Mon Sep 17 00:00:00 2001 From: Carter Date: Wed, 13 Nov 2024 10:16:59 -0600 Subject: [PATCH] added router for page navigation --- src/navigation/Router.tsx | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/navigation/Router.tsx diff --git a/src/navigation/Router.tsx b/src/navigation/Router.tsx new file mode 100644 index 0000000..1fc0a41 --- /dev/null +++ b/src/navigation/Router.tsx @@ -0,0 +1,36 @@ +import { Suspense } from "react"; +import LoadingScreen from "../app/LoadingScreen"; +import { BrowserRouter, Navigate, Route, Routes } from "react-router-dom"; +import { Typography } from "@mui/material"; + + + +export default function Router() { + + + const hello = () => { + return ( + + Hello! + + ) + } + + return ( + }> + + + + {/* Redirects */} + } /> + + {/* Page routes */} + + {/* } /> + } /> + } /> */} + + + + ) +} \ No newline at end of file