Lazy Loading
@NgModule({
imports: [
NgxsModule.forFeature([LazyState])
]
})
export class LazyModule{}export interface AppStateModel {
zoos: Zoo[];
}
export interface OfficesStateModel extends AppStateModel {
offices: Office[];
}Last updated

