Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sanketmeghani/d8636c9f3f619ee3190c16d7162eb479 to your computer and use it in GitHub Desktop.
Save sanketmeghani/d8636c9f3f619ee3190c16d7162eb479 to your computer and use it in GitHub Desktop.
React event handler with parameters using property initializer syntax
handleClick = (param) => (e) => {
console.log('Event', e);
console.log('Parameter', param);
}
render() {
<button onClick={this.handleClick('Parameter')}></button>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment