Installation
Installation
npm install @ngxs/store --save
# or if you are using yarn
yarn add @ngxs/storeimport { NgModule } from '@angular/core';
import { NgxsModule } from '@ngxs/store';
import { ZooState } from './examples/zoo.state';
@NgModule({
imports: [
NgxsModule.forRoot([ZooState], {
developmentMode: !environment.production
})
]
})
export class AppModule {}Development Builds
Last updated

