Skip to content

Instantly share code, notes, and snippets.

@Board-Ape
Created November 10, 2018 00:40
Show Gist options
  • Save Board-Ape/dcb7ca0ef1fdfcb2c332d3f13b3881dc to your computer and use it in GitHub Desktop.
Save Board-Ape/dcb7ca0ef1fdfcb2c332d3f13b3881dc to your computer and use it in GitHub Desktop.
Curry Examples
// JS bind method
function.prototype.bind()
// React/Redux
export default connect(mapStateToProps)(ToDoApp)
// Reusable Even Handling
const handleChange = (fieldName) => (event) => {
saveField(fieldName, event.target.value
}
<input onchange={handleChange('submitButton')} />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment