Skip to content

Instantly share code, notes, and snippets.

@danny-andrews
Last active October 10, 2017 23:39
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/b5b62a2b9c8237af7d3d61537499255c to your computer and use it in GitHub Desktop.
Save danny-andrews/b5b62a2b9c8237af7d3d61537499255c to your computer and use it in GitHub Desktop.
React Abstractions: Compare render props
const LuckyNumber = ({ render }) => render({ number: Math.random() });
const App = ({ message }) => (
<LuckyNumber
render={({number}) => <div>{message}: {number}!</div>}
/>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment