Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created February 17, 2018 15:36
Show Gist options
  • Save DZuz14/055244beffa2555e9134d751637001ff to your computer and use it in GitHub Desktop.
Save DZuz14/055244beffa2555e9134d751637001ff to your computer and use it in GitHub Desktop.
Reducer
function loggedIn(state = false, action) {
switch(action.type) {
case "login":
return true;
default:
return state;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment