// app/redux/reducers.es6.js import {combineReducers} from 'redux'; import {SET_ROUTE} from 'app/redux/action-types'; const route = (state = {path: undefined}, action) => { switch (action.type) { case SET_ROUTE: return action.route; default: return state; } }; const app = combineReducers({ route // assuming more reducers are added here }); export default app;