Skip to content

Instantly share code, notes, and snippets.

function withHooksSupport(Component) {
return class ComponentWithHooksSupport extends Component {
render() {
const withHook = (useHook) => {
return useHook;
}
const WithHook = withHook(() => super.render());
return <WithHook />;
}
function withHooksSupport(Component) {
return class ComponentWithHooksSupport extends Component {
render() {
const RenderFn = () => super.render();
return <RenderFn />;
}
}
}