Skip to content

Instantly share code, notes, and snippets.

@mDibyo
Last active February 17, 2019 19:56
Show Gist options
  • Save mDibyo/8be7a7e168e03e4d25a49ecb80b2ea92 to your computer and use it in GitHub Desktop.
Save mDibyo/8be7a7e168e03e4d25a49ecb80b2ea92 to your computer and use it in GitHub Desktop.
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