Skip to content

Instantly share code, notes, and snippets.

@EyalPerry
Created August 19, 2020 17:25
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 EyalPerry/e6156346e31e8fc540eeca0110c073ee to your computer and use it in GitHub Desktop.
Save EyalPerry/e6156346e31e8fc540eeca0110c073ee to your computer and use it in GitHub Desktop.
function MyDiv(props: any){
return <div>hi!</div>;
}
function Wrapper(props: any) {
const {Wrapped, ...wrappedProps} = props;
return <div><Wrapped {...wrappedProps} /></div>
}
<Wrapper Wrapped={MyDiv} className="so-hot" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment