Add @ngrx to your app
Opened this issue · 3 comments
web-dave commented
- import it into your RootModule
- import it into your Feature Module
- Inpect the devtools. Can you find it?
web-dave commented
Import into RootModule
@NgModule({
...
imports: [
...,
StoreModule.forRoot({})
]
})
export class AppModule {}
web-dave commented
Feature Module
@NgModule({
imports: [
...,
StoreModule.forFeature(booksStoreName, booksReducer)
],
...
})
export class BookModule {}