Update to new structure
This commit is contained in:
12
src/app/demo/components/auth/auth-routing.module.ts
Normal file
12
src/app/demo/components/auth/auth-routing.module.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule } from '@angular/router';
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forChild([
|
||||
{ path: 'error', loadChildren: () => import('./error/error.module').then(m => m.ErrorModule) },
|
||||
{ path: 'access', loadChildren: () => import('./access/access.module').then(m => m.AccessModule) },
|
||||
{ path: 'login', loadChildren: () => import('./login/login.module').then(m => m.LoginModule) }
|
||||
])],
|
||||
exports: [RouterModule]
|
||||
})
|
||||
export class AuthRoutingModule { }
|
||||
Reference in New Issue
Block a user