Skip to content

Instantly share code, notes, and snippets.

@sanketmeghani
Last active August 11, 2017 14:57
Show Gist options
  • Save sanketmeghani/24bd2ad5a2255f562cf81aec2c904810 to your computer and use it in GitHub Desktop.
Save sanketmeghani/24bd2ad5a2255f562cf81aec2c904810 to your computer and use it in GitHub Desktop.
React event handler with parameters
handleClick(param, e) {
console.log('Parameter', param);
console.log('Event', e);
}
render() {
<button onClick={this.handleClick.bind(this, 'Parameter')}></button>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment