import {NgModule} from '@angular/core'; import {RouterModule} from '@angular/router'; @NgModule({ imports: [ RouterModule.forChild([ { path: 'entities', loadChildren: '../../openaireLibrary/dashboard/entity/entities.module#EntitiesModule', pathMatch: 'full' }, { path: 'classContents', loadChildren: '../../openaireLibrary/dashboard/divhelpcontent/class-help-contents.module#ClassHelpContentsModule', pathMatch: 'full' }, { path: 'classContents/edit', loadChildren: '../../openaireLibrary/dashboard/divhelpcontent/class-help-content-form.module#ClassHelpContentFormModule', pathMatch: 'full' }, { path: 'helptexts', loadChildren: '../../openaireLibrary/dashboard/helpTexts/page-help-contents.module#PageHelpContentsModule', pathMatch: 'full' }, { path: 'helptexts/edit', loadChildren: '../../openaireLibrary/dashboard/helpTexts/page-help-content-form.module#PageHelpContentFormModule', pathMatch: 'full' }, { path: 'pages', loadChildren: '../../openaireLibrary/dashboard/page/pages.module#PagesModule', pathMatch: 'full' } ]) ] }) export class AdminToolsRoutingModule { }