Skip to content

Instantly share code, notes, and snippets.

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