Skip to content

Instantly share code, notes, and snippets.

@kingsley-einstein
Created June 27, 2020 19:37
Show Gist options
  • Save kingsley-einstein/45e60a483d3d7c24c0e1bcb6c4234cca to your computer and use it in GitHub Desktop.
Save kingsley-einstein/45e60a483d3d7c24c0e1bcb6c4234cca to your computer and use it in GitHub Desktop.
import { ActionReducerMap } from '@ngrx/store';
import { AppState } from '../../states';
import postReducer from '../post';
import userReducer from '../user';
const appReducers: ActionReducerMap<AppState> = {
userState: userReducer,
postState: postReducer
};
export default appReducers;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment