diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2023-12-22 18:59:16 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2023-12-22 18:59:16 +0200 |
| commit | e97dbb11b30d0fe51b2ca1660e9f0d27a99a73e3 (patch) | |
| tree | e99961a2ff29d7e8522697f67c9276713c657569 /driver/src/main.tsx | |
| parent | 7b379914e44583b9b097ed286b669ad244b176a1 (diff) | |
| download | carpool-e97dbb11b30d0fe51b2ca1660e9f0d27a99a73e3.tar.xz carpool-e97dbb11b30d0fe51b2ca1660e9f0d27a99a73e3.zip | |
Added most of the logic on the driver side
Diffstat (limited to 'driver/src/main.tsx')
| -rw-r--r-- | driver/src/main.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/driver/src/main.tsx b/driver/src/main.tsx index 300ddc1..ab11de5 100644 --- a/driver/src/main.tsx +++ b/driver/src/main.tsx @@ -5,6 +5,7 @@ import App from './App.tsx' import './index.css' import Login from './pages/Login.tsx' import SignUp from './pages/SignUp.tsx' +import Home from './pages/Home.tsx' @@ -14,6 +15,10 @@ const router = createBrowserRouter([ element: <App /> }, { + path: "/home", + element: <Home /> + }, + { path: "/signup", element: <SignUp /> }, |
