type Props = { adminUrl: string|undefined; onLoad: () => void; }; const AuthFrame: React.FC = ({adminUrl, onLoad}) => { const iframeStyle = { display: 'none' }; return ( ); }; export default AuthFrame;