export default function BaseComponent(apicall) { return (props): React.FC => { // <<- this is the real renderable component const { /* ... */ } = useUser(apicall); return /* ... */ }; }