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/c1ba9bd7194cb691a7c2794202cf85d8 to your computer and use it in GitHub Desktop.

Select an option

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