web-dave/ngrx-workshop

Add @ngrx to your app

Opened this issue · 3 comments

  • import it into your RootModule
  • import it into your Feature Module
  • Inpect the devtools. Can you find it?
Import into RootModule
@NgModule({
  ...
  imports: [
    ...,
    StoreModule.forRoot({})
  ]
})
export class AppModule {}
Feature Module
@NgModule({
  imports: [
    ...,
    StoreModule.forFeature(booksStoreName, booksReducer)
  ],
  ...
})
export class BookModule {}