import * as ModeActions from '../actions/mode.actions'; const initial = ModeActions.OPTIONS; const reducer = (state = initial, action) => { if (action.type !== ModeActions.MODE_ACTION) { return state; } return action.action; }; export default reducer;