Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created June 23, 2019 22:27
Show Gist options
  • Save jsmanifest/2da00a9720f70ba23f4f1b9fda94b4e7 to your computer and use it in GitHub Desktop.
Save jsmanifest/2da00a9720f70ba23f4f1b9fda94b4e7 to your computer and use it in GitHub Desktop.
const onSubmit = (friend) => (e) => {
e.preventDefault()
if (!friend.name) return
dispatch({ type: 'add-friend', friend })
}
const undo = () => {
dispatch({ type: 'undo' })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment