Created
March 10, 2018 13:31
-
-
Save MicroBenz/35428d3916b75d3c74f07ac297e2c219 to your computer and use it in GitHub Desktop.
React Context
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
const Parent = props => ( | |
<div> | |
<h1>Here is parent</h1> | |
<Child title="From Parent" /> | |
</div> | |
); | |
const Child = ({ title }) => ( | |
<p>Here is child {title}</p> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment