Skip to content

Instantly share code, notes, and snippets.

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