Last active
February 17, 2019 19:56
-
-
Save mDibyo/8be7a7e168e03e4d25a49ecb80b2ea92 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function withHooksSupport(Component) { | |
return class ComponentWithHooksSupport extends Component { | |
render() { | |
const RenderFn = () => super.render(); | |
return <RenderFn />; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment