Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created September 23, 2017 19:08
Show Gist options
  • Save Kamilnaja/8e11c40eb575568a195bb8a333b8cbf1 to your computer and use it in GitHub Desktop.
Save Kamilnaja/8e11c40eb575568a195bb8a333b8cbf1 to your computer and use it in GitHub Desktop.
send function from one component react
<button onClick={this.props.greet}>Greet</button>
class App extends React.Component {
onGreet() {
alert("Hello")
}
render() {
return (
<div>
<Home initialAge={28} greet={this.onGreet}>
</Home>
</div>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment