const LuckyNumber = ({ component: Component, componentProps }) => <Component number={Math.random()} {...componentProps} />; | |
const AppBody = ({ message, number }) => <div>{message}: {number}!</div>; | |
const App = ({ message }) => <LuckyNumber componentProps={{ message }} component={AppBody} />; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment