Skip to content

Instantly share code, notes, and snippets.

@mDibyo
Last active February 17, 2019 19:55
Show Gist options
  • Select an option

  • Save mDibyo/cb8d0e94952b460015554baf4172b7cc to your computer and use it in GitHub Desktop.

Select an option

Save mDibyo/cb8d0e94952b460015554baf4172b7cc to your computer and use it in GitHub Desktop.
function withHooksSupport(Component) {
return class ComponentWithHooksSupport extends Component {
render() {
const withHook = (useHook) => {
return useHook;
}
const WithHook = withHook(() => super.render());
return <WithHook />;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment