import { NgModule, Type } from '@angular/core'; import { SharedModule } from '@shared'; // dashboard pages import { DashboardComponent } from './dashboard/dashboard.component'; import { RouteRoutingModule } from './routes-routing.module'; const COMPONENTS = [DashboardComponent]; const COMPONENTS_NOROUNT: Array> = []; @NgModule({ imports: [SharedModule, RouteRoutingModule], declarations: [...COMPONENTS, ...COMPONENTS_NOROUNT], entryComponents: COMPONENTS_NOROUNT }) export class RoutesModule {}