index.js 253 Bytes
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;