mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-11 21:33:02 -05:00
15 lines
298 B
TypeScript
15 lines
298 B
TypeScript
export const APP_ROUTES = [
|
|
{
|
|
path: '',
|
|
loadComponent: () =>
|
|
import('./login.component').then((m) => m.LoginComponent),
|
|
},
|
|
{
|
|
path: 'enter',
|
|
loadComponent: () =>
|
|
import('./dashboard/admin.component').then(
|
|
(m) => m.AdminDashboardComponent,
|
|
),
|
|
},
|
|
];
|