import { T9n } from 'features/T9n' import { client } from 'features/AuthServiceApp/config/clients' import { AUTH_SERVICE } from 'config/routes' import { ScBody, Modal, ScApplyButton, ScHeaderTitle, ScText, ScLink, } from './styled' import { Header, Wrapper, Footer, } from '../RegisterPopup/styled' type Props = { handleModalClose: () => void, isModalOpen: boolean, } export const ConfirmPopup = (props: Props) => { const { handleModalClose, isModalOpen, } = props return (
 
) }