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.
 
 

16 lines
394 B

require('immutable');
import * as NewGameActions from '../../actions/welcome/new-game.actions';
const reducer = (state = false, action) => {
// if (action.type !== NewGameActions.NEWGAME_ACTION) {
// return state;
// }
//
// if (action.action === NewGameActions.BLINK) {
// return (state ? false : true);
// }
return false;
};
export default reducer;