mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-12 22:03:03 -05:00
feat(doc): move permissions
This commit is contained in:
14
apps/angular/permissions/src/app/routes.ts
Normal file
14
apps/angular/permissions/src/app/routes.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
export const APP_ROUTES = [
|
||||
{
|
||||
path: '',
|
||||
loadComponent: () =>
|
||||
import('./login.component').then((m) => m.LoginComponent),
|
||||
},
|
||||
{
|
||||
path: 'enter',
|
||||
loadComponent: () =>
|
||||
import('./dashboard/admin.component').then(
|
||||
(m) => m.AdminDashboardComponent
|
||||
),
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user