import React, { useContext } from 'react'; import ModalRootContext from './ModalRootContext'; export default function withModalRootContext(Component: T): T { function WithModalRootContext(props: {}) { const { updateModalHeight } = useContext(ModalRootContext); // @ts-ignore return ; } return WithModalRootContext as unknown as T; }