Skip to content

Instantly share code, notes, and snippets.

@mDibyo
Last active February 17, 2019 19:54
function withHooksSupport(Component) {
return class ComponentWithHooksSupport extends Component {
render() {
const WithHook = withHook(() => super.render());
return (
<WithHook>
{superRenderReturnValue => superRenderReturnValue}
</WithHook>
);
}
}
}
// the `withHook` function from "take 1"
// https://github.com/mDibyo/with-hook/blob/v0.2/src/index.js
const withHook = (useHook) => {
return ({ children }) => {
const returnValue = useHook();
return children(returnValue);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment