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.
|
require('immutable');
|
|
import * as ModeActions from '../actions/mode.actions';
|
|
|
|
const reducer = (state = ModeActions.WELCOME, action) => {
|
|
if (action.type !== ModeActions.MODE_ACTION) {
|
|
return state;
|
|
}
|
|
|
|
return action.action;
|
|
};
|
|
|
|
export default reducer;
|
|
|