Changeset d47e225 for frontend/src/App.tsx
- Timestamp:
- 01/26/26 20:28:08 (6 months ago)
- Branches:
- main
- Children:
- c6e1892
- Parents:
- 484dc3f (diff), a3ae097 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
frontend/src/App.tsx (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/App.tsx
r484dc3f rd47e225 1 1 import { createBrowserRouter, Outlet, RouterProvider } from "react-router-dom"; 2 import AllUsers from "./components/userProfile/AllUsersHelper"; 3 import UserDetail from "./components/userProfile/UserDetailView"; 2 4 import LandingPage from "./LandingPage"; 3 5 import Login from "./Login"; … … 30 32 }, 31 33 { 34 path: "/users", 35 element: <AllUsers />, 36 }, 37 { 38 path: "/users/:userId", 39 element: <UserDetail />, 40 }, 41 { 32 42 path: "/register", 33 43 element: <Register />,
Note:
See TracChangeset
for help on using the changeset viewer.
