App State Module
Create application state module.
Now that we have implemented our root state interface & reducer map, we need to update the state module we created in the first step:
state.module.ts
Update the import of the StoreModule
. In the forRoot()
static method, specify the appReducer
and (if necessary) appMetaReducers
from your previously created app.reducer
as with any normal NgRX app.
If you have any custom effects you may have implemented, include those classes in the EffectsModule
import's forRoot()
call. Effects are optional with NgRx Auto-Entity, so if you have no effects just pass an empty array.
Last updated