Ignore:
Timestamp:
01/26/26 20:28:08 (6 months ago)
Author:
Filip Gavrilovski <filipgavrilovski28@…>
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.
Message:

Merge branch 'main' into gavro/auth

File:
1 edited

Legend:

Unmodified
Added
Removed
  • frontend/src/App.tsx

    r484dc3f rd47e225  
    11import { createBrowserRouter, Outlet, RouterProvider } from "react-router-dom";
     2import AllUsers from "./components/userProfile/AllUsersHelper";
     3import UserDetail from "./components/userProfile/UserDetailView";
    24import LandingPage from "./LandingPage";
    35import Login from "./Login";
     
    3032                        },
    3133                        {
     34                                path: "/users",
     35                                element: <AllUsers />,
     36                        },
     37                        {
     38                                path: "/users/:userId",
     39                                element: <UserDetail />,
     40                        },
     41                        {
    3242                                path: "/register",
    3343                                element: <Register />,
Note: See TracChangeset for help on using the changeset viewer.