Skip to content

Instantly share code, notes, and snippets.

@hamlim
Created May 22, 2017 12:21
Show Gist options
  • Save hamlim/867071f0f0e426d4c142d6017a805424 to your computer and use it in GitHub Desktop.
Save hamlim/867071f0f0e426d4c142d6017a805424 to your computer and use it in GitHub Desktop.
Curried function Event Handlers in React
class Comp extends Component {
handleClick = (...args) => e => {
console.log(args, e);
}
render() {
return <button onClick={this.handleClick('args')}>Click Me</button>;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment