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/d8bc8640ab125d2b5857070d6e472c47 to your computer and use it in GitHub Desktop.
Save danny-andrews/d8bc8640ab125d2b5857070d6e472c47 to your computer and use it in GitHub Desktop.
React Abstractions: Component Injection
const LuckyNumber = ({ component: Component }) => <Component number={Math.random()} />;
const AppBody = ({ number }) => <div>Your number is: {number}!</div>;
const App = () => <LuckyNumber component={AppBody} />;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment