Skip to content

Instantly share code, notes, and snippets.

@danny-andrews
Last active October 10, 2017 23:42
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/c5f68fa6ea00e5362996e22ea90c045c to your computer and use it in GitHub Desktop.
Save danny-andrews/c5f68fa6ea00e5362996e22ea90c045c to your computer and use it in GitHub Desktop.
const LuckyNumber = ({ component: Component }) => <Component number={Math.random()} />;
const AppBody = ({number}) => <div>{message}: {number}!</div>;
// How do I get the message prop to AppBody? 🤔🤔🤔
const App = () => <LuckyNumber component={AppBody} />;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment