diff --git a/.vscode/launch.json b/.vscode/launch.json index 0b0a325..5f4c45c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -13,7 +13,10 @@ { "name": "Launch Chrome localhost", "type": "pwa-chrome", - "port": 9222 + "request": "launch", + "reAttach": true, + "url": "http://localhost:5173", + "webRoot": "${workspaceFolder}/client" }, { diff --git a/client/index.html b/client/index.html index a51a4e4..83c10b6 100644 --- a/client/index.html +++ b/client/index.html @@ -1,5 +1,5 @@ - +
diff --git a/client/src/Routes.tsx b/client/src/Routes.tsx index 4a4d276..0944408 100644 --- a/client/src/Routes.tsx +++ b/client/src/Routes.tsx @@ -4,12 +4,14 @@ import { DealersList, LoginPage, LogoutPage, + QuoteCreate, SettingsEditor, SettingsLayout, StartPage, } from "./app"; import { CatalogLayout, CatalogList } from "./app/catalog"; import { DashboardPage } from "./app/dashboard"; +import { QuotesLayout } from "./app/quotes/layout"; import { QuotesList } from "./app/quotes/list"; import { ProtectedRoute } from "./components"; @@ -68,9 +70,21 @@ export const Routes = () => { path: "/quotes", element: ({`${row.first_name} ${row.last_name}`}
+{row.job_title}
+{subtitle}
+{subtitle}
-