Created
November 14, 2018 12:47
-
-
Save ilhantekir/f374e4673900f92cedda4261e0054dc3 to your computer and use it in GitHub Desktop.
This file contains 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
PARENT | |
func = (smh) => { | |
alert(smh) | |
} | |
<ChildComponent func={this.func} /> | |
CHILD | |
pressHandler(smh) { | |
this.props.func(smh) | |
} | |
<Text onPress={() => this.pressHandler("sss")}> Click here <Text/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment