Lazy Loading
@NgModule({
imports: [NgxsModule.forFeature([LazyState])]
})
export class LazyModule {}@State<Zoo[]>({
name: 'zoos',
defaults: []
})
@Injectable()
export class ZoosState {}@State<Office[]>({
name: 'offices',
defaults: []
})
@Injectable()
export class OfficesState {}Last updated

