import { compose } from "@ngrx/core";
function todosReducer(state, action) { ... }
function postsReducer(state, action) { ... }
const reducers = { todos: todosReducer, posts: postsReducer };
@NgModule({
...
imports: [
...
StoreModule.provideStore(compose(logger, combineReducers)(reducers)),
],
bootstrap: [AppComponent]
})
export class AppModule {
}