develop
snake
const snake = (state = snakeInitialState, action) => { switch(action.type) { case 'RESTART': return snakeInitialState; case 'MOVE':