Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created August 26, 2019 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BetterProgramming/966037d5b0f3c3fe9d0f8a8d63d63e85 to your computer and use it in GitHub Desktop.
Save BetterProgramming/966037d5b0f3c3fe9d0f8a8d63d63e85 to your computer and use it in GitHub Desktop.
const TOGGLE_MENU = 'TOGGLE_MENU';
function menuReducer(state, action) {
switch (action.type) {
case TOGGLE_MENU:
state = action.payload;
return state;
default:
return state
}
}
export { menuReducer, TOGGLE_MENU };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment