[WIP] Copy Claims Pages from Dashboard

This commit is contained in:
R
2023-03-08 03:13:13 +07:00
parent 254420bdae
commit 53b35e86c2
13 changed files with 1748 additions and 0 deletions

View File

@@ -108,6 +108,22 @@ export default function Router() {
},
],
},
{
path: '/claims',
element: (
<AuthProvider>
<AuthGuard>
<DashboardLayout />
</AuthGuard>
</AuthProvider>
),
children: [
{
element: <Claims />,
index: true,
},
],
},
{
path: '*',
element: <LogoOnlyLayout />,
@@ -136,3 +152,4 @@ const AlarmCenterUserProfile = Loadable(lazy(() => import('../pages/AlarmCenter/
// Claim Report
const ClaimReport = Loadable(lazy(() => import('../pages/ClaimReport/Index')));
const Claims = Loadable(lazy(() => import('../pages/Claims/Index')));