index.js 253 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 import {combineReducers} from 'redux'; import app from './app/appReducer'; import list from './list/listReducer'; import detail from './detail/detailReducer'; const rootReducer = combineReducers({ app, list, detail, }); export default rootReducer;