building data grid for users. currently has example grid with dummy data

This commit is contained in:
Carter 2024-11-21 13:03:02 -06:00
parent 2690a2a5ad
commit d050fdee55
8 changed files with 780 additions and 632 deletions

View file

@ -5,6 +5,7 @@ import { Typography } from "@mui/material";
import { useAuth0 } from "@auth0/auth0-react";
import Teams from "pages/Teams";
import SideNavigator from "./SideNavigator";
import Users from "pages/Users";
interface Props {
open: boolean,
@ -52,6 +53,7 @@ export default function Router(props: Props) {
{/* Page routes */}
<Route index element={hello()} />
<Route path="/teams" element={<Teams/>} />
<Route path="/users" element={<Users/>} />
{/* <Route
path="/teams/:teamID"
element={<Team />}