Add all Client Hub routes to App.tsx
cgen-f968be39e31b403eb1727dff9948b4eb
This commit is contained in:
parent
715ef89ce2
commit
5b60434fec
1 changed files with 20 additions and 0 deletions
|
|
@ -478,10 +478,30 @@ const App = () => (
|
|||
|
||||
{/* Client Hub routes */}
|
||||
<Route path="/hub/client" element={<ClientHub />} />
|
||||
<Route
|
||||
path="/hub/client/dashboard"
|
||||
element={<ClientDashboard />}
|
||||
/>
|
||||
<Route
|
||||
path="/hub/client/projects"
|
||||
element={<ClientProjects />}
|
||||
/>
|
||||
<Route
|
||||
path="/hub/client/invoices"
|
||||
element={<ClientInvoices />}
|
||||
/>
|
||||
<Route
|
||||
path="/hub/client/contracts"
|
||||
element={<ClientContracts />}
|
||||
/>
|
||||
<Route
|
||||
path="/hub/client/reports"
|
||||
element={<ClientReports />}
|
||||
/>
|
||||
<Route
|
||||
path="/hub/client/settings"
|
||||
element={<ClientSettings />}
|
||||
/>
|
||||
|
||||
{/* Nexus routes */}
|
||||
<Route path="/nexus" element={<Nexus />} />
|
||||
|
|
|
|||
Loading…
Reference in a new issue