import { T9n } from 'features/T9n' import { Modal, Wrapper, Header, HeaderTitle, Body, Footer, ApplyButton, // SendConfirmationButton, Text, } from './styled' type Props = { email: string, handleModalClose: () => void, isModalOpen: boolean, } export const RegisterPopup = (props: Props) => { const { email, handleModalClose, isModalOpen, } = props // const handleNewConfirmation = () => { // // TODO дописать логику для отправки доп. письма, может понадобится, когда допишут бэк // // console.log('send new confirmation') // } return (
  {email}   
) }