index.js 189 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import {combineReducers} from "redux"; import user from './user'; // import post from './post'; const rootReducer = combineReducers({ user, // post }); export default rootReducer;