Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ilhantekir/f374e4673900f92cedda4261e0054dc3 to your computer and use it in GitHub Desktop.
Save ilhantekir/f374e4673900f92cedda4261e0054dc3 to your computer and use it in GitHub Desktop.
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