Skip to content

Instantly share code, notes, and snippets.

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