dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_StationsLazyModule cluster_StationsLazyModule_declarations cluster_StationsLazyModule_imports StationsNavigation StationsNavigation StationsLazyModule StationsLazyModule StationsNavigation->StationsLazyModule Stations Stations Stations->StationsLazyModule StationsList StationsList StationsList->StationsLazyModule StationsPropsManager StationsPropsManager StationsPropsManager->StationsLazyModule DropdownModulePrime DropdownModulePrime DropdownModulePrime->StationsLazyModule SharedModule SharedModule SharedModule->StationsLazyModule CommonModule CommonModule CommonModule->StationsLazyModule RouterModule.forChild(args) RouterModule.forChild(args) RouterModule.forChild(args)->StationsLazyModule

File

src/app/stations/index.ts

import {NgModule} from "@angular/core";
import {CommonModule} from "@angular/common";
import {RouterModule} from "@angular/router";
import {StationsNavigation} from "./stations-navigation";
import {DropdownModule as DropdownModulePrime} from "primeng/primeng";
import {SharedModule} from "../../modules/shared.module";
import {Stations} from "./stations";
import {StationsList} from "./stations-list";
import {StationsPropsManager} from "./stations-props-manager";

export const LAZY_ROUTES = [
    {path: ':folder', component: StationsNavigation},
    {path: ':folder/:id', component: StationsNavigation},
    {path: '**', component: StationsNavigation}
];

@NgModule({
    imports: [DropdownModulePrime, SharedModule, CommonModule, RouterModule.forChild(LAZY_ROUTES)],
    declarations: [StationsNavigation, Stations, StationsList, StationsPropsManager]
})
export class StationsLazyModule {
}

results matching ""

    No results matching ""