Skip to content

Instantly share code, notes, and snippets.

@QMaximillian
Created February 14, 2019 03:49
Show Gist options
  • Save QMaximillian/553131b7be902c1677369a94558da5d6 to your computer and use it in GitHub Desktop.
Save QMaximillian/553131b7be902c1677369a94558da5d6 to your computer and use it in GitHub Desktop.
Render Prop - SayHello
const SayHello = () => (
<Hello
render={({ loud, word, handleLoudness }) => (
<h1>
<b onClick={handleLoudness}>
{loud ? word : word.toUpperCase()}</b>
</h1>
)}
/>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment