import { Portal } from '../components/Portal'; import { type ComponentType } from 'react'; const withPortal = (Component: ComponentType) => (props: T) => { return ( {/* @ts-ignore */} ); }; export default withPortal;