Skip to content

Instantly share code, notes, and snippets.

@duke79
Last active January 1, 2020 16:44
Show Gist options
  • Save duke79/d37f5aa25cc11f6d715104d00a4eea50 to your computer and use it in GitHub Desktop.
Save duke79/d37f5aa25cc11f6d715104d00a4eea50 to your computer and use it in GitHub Desktop.
Redux in 30 seconds
const state = {}
...
const myReducer = ({ action, data }) => {
switch (action) {
case 'A_STRING_REPRESENTING_AN_ACTION':
return {
...state,
//some modifications based on 'data'
}
default:
return state
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment