Skip to content

Instantly share code, notes, and snippets.

@jhfgloria
Last active May 1, 2019 16:49
Show Gist options
  • Select an option

  • Save jhfgloria/d1720131c001ef024998a79eaa05aa0d to your computer and use it in GitHub Desktop.

Select an option

Save jhfgloria/d1720131c001ef024998a79eaa05aa0d to your computer and use it in GitHub Desktop.
class MyParentComponent extends Component {
onCallback(fromChildArg) {
console.log(fromChildArg)
}
render() {
<MyChildComponent callback={ this.onCallback(whateverArgumentItDoesntMatter) } />
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment