Skip to content

Instantly share code, notes, and snippets.

@MicroBenz
Created March 10, 2018 13:31
Show Gist options
  • Save MicroBenz/35428d3916b75d3c74f07ac297e2c219 to your computer and use it in GitHub Desktop.
Save MicroBenz/35428d3916b75d3c74f07ac297e2c219 to your computer and use it in GitHub Desktop.
React Context
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