Implement admin and user sidebars with routing and styling updates
This commit is contained in:
@@ -8,7 +8,7 @@ const ADMIN_ROUTES: Routes = [
|
||||
|
||||
children: [
|
||||
{
|
||||
path: 'welcome',
|
||||
path: 'admin-welcome',
|
||||
loadComponent: () => import('../admin-module/admin-welcome.component/admin-welcome.component').then((c) => c.AdminWelcomeComponent),
|
||||
},
|
||||
{
|
||||
@@ -17,9 +17,12 @@ const ADMIN_ROUTES: Routes = [
|
||||
},
|
||||
{
|
||||
path: 'system',
|
||||
|
||||
loadComponent: () => import('../admin-module/system.component/system.component').then((c) => c.SystemComponent)
|
||||
}
|
||||
},
|
||||
{
|
||||
path: 'users',
|
||||
loadComponent: () => import('../admin-module/users.component/users.component').then((c) => c.UsersComponent)
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user