Integrated Counter-Example from https://ngrx.io/guide/store
[examples/angular-tour-of-heroes] / src / app / reducers / index.ts
index 4f57bb0..96a875b 100644 (file)
@@ -6,13 +6,14 @@ import {
   MetaReducer
 } from '@ngrx/store';
 import { environment } from '../../environments/environment';
+import * as fromVorgang from './vorgang';
 
 export interface State {
 
 }
 
 export const reducers: ActionReducerMap<State> = {
-
+  vorgang: fromVorgang.reducer
 };