-
-
Save jhfgloria/c1ba9bd7194cb691a7c2794202cf85d8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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