Created
June 27, 2020 19:37
-
-
Save kingsley-einstein/45e60a483d3d7c24c0e1bcb6c4234cca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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