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;