Skip to content

Instantly share code, notes, and snippets.

@sabesansathananthan
Created April 23, 2021 12:24
Show Gist options
  • Save sabesansathananthan/cc943c59dc68ba6ff009e34da384a27c to your computer and use it in GitHub Desktop.
Save sabesansathananthan/cc943c59dc68ba6ff009e34da384a27c to your computer and use it in GitHub Desktop.
How React Components Are Reused
const HOC = (WrappedComponent) => {
return class EnhancedComponent extends React.Component {
render() {
return (
<div class="layout">
<WrappedComponent {...this.props} />
</div>
);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment