[WIP] Add Approve Button

This commit is contained in:
R
2023-02-14 13:07:17 +07:00
parent 13542cd3c0
commit d706bf0623
8 changed files with 1076 additions and 0 deletions

View File

@@ -221,6 +221,10 @@ export default function Router() {
path: 'claims',
element: <Claims />,
},
{
path: 'claim-requests',
element: <ClaimRequests />,
},
{
path: 'claims/create',
element: <ClaimsCreate />,
@@ -339,3 +343,5 @@ const Profile = Loadable(lazy(() => import('../pages/Profile/Index')));
const Claims = Loadable(lazy(() => import('../pages/Claims/Index')));
const ClaimsCreate = Loadable(lazy(() => import('../pages/Claims/CreateUpdate')));
const ClaimRequests = Loadable(lazy(() => import('../pages/ClaimRequests/Index')));