Created
September 23, 2017 19:08
-
-
Save Kamilnaja/8e11c40eb575568a195bb8a333b8cbf1 to your computer and use it in GitHub Desktop.
send function from one component react
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
<button onClick={this.props.greet}>Greet</button> |
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
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