employers list added
This commit was merged in pull request #24.
This commit is contained in:
@@ -15,6 +15,7 @@ const PrivateRoutes = () => {
|
||||
// const ChatPage = lazy(() => import('../modules/apps/chat/ChatPage'))
|
||||
const ProcessPage = lazy(() => import('../modules/process/ProcessPage'))
|
||||
const UsersPage = lazy(() => import('../modules/apps/user-management/UsersPage'))
|
||||
const EmployersPage =lazy(() => import('../modules/employers/employers-list/UsersPage'))
|
||||
|
||||
return (
|
||||
<Routes>
|
||||
@@ -74,6 +75,14 @@ const PrivateRoutes = () => {
|
||||
</SuspensedView>
|
||||
}
|
||||
/>
|
||||
<Route
|
||||
path='/apps/employers-list/*'
|
||||
element={
|
||||
<SuspensedView>
|
||||
<EmployersPage />
|
||||
</SuspensedView>
|
||||
}
|
||||
/>
|
||||
{/* Page Not Found */}
|
||||
<Route path='*' element={<Navigate to='/error/404' />} />
|
||||
</Route>
|
||||
|
||||
Reference in New Issue
Block a user