Skip to content

Instantly share code, notes, and snippets.

@kobvel
Last active October 5, 2017 19:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kobvel/3c32e865aa45671e0bd4cfdf024e1d9b to your computer and use it in GitHub Desktop.
Save kobvel/3c32e865aa45671e0bd4cfdf024e1d9b to your computer and use it in GitHub Desktop.
import { ActionReducerMap } from '@ngrx/store';
import * as fromProfile from '../..../profile/profile.reducer';
// Our top level state interface is just a map of keys to inner state types.
export interface IAppState {
profileData: fromProfile.IProfileState;
}
const reducers = {
profileData: fromProfile.reducer,
};
export const storeReducers: ActionReducerMap<IAppState> = reducers;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment