Skip to content

Instantly share code, notes, and snippets.

@danny-andrews
Last active October 10, 2017 22:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danny-andrews/e214e127c9610b54dea735b932edf396 to your computer and use it in GitHub Desktop.
Save danny-andrews/e214e127c9610b54dea735b932edf396 to your computer and use it in GitHub Desktop.
React Abstractions: Render Prop
const LuckyNumber = ({ render }) => render({ number: Math.random() });
const App = () => (
<LuckyNumber
render={({number}) => <div>Your number is: {number}!</div>}
/>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment