You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
276 B

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;