Skip to content

Instantly share code, notes, and snippets.

@rbiggs
Last active October 25, 2019 03:16
Show Gist options
  • Select an option

  • Save rbiggs/760e5ddb3f01021b999deb31c3e1ebc4 to your computer and use it in GitHub Desktop.

Select an option

Save rbiggs/760e5ddb3f01021b999deb31c3e1ebc4 to your computer and use it in GitHub Desktop.
Clone state for actions for immutability
udate(state, message) {
// Create clone of state with destructing:
const prevState = {...state}
// Pass cloned state to actions:
return actions(prevState, message)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment