import Button from "../../common/component/styled/Button"; import { FC, MouseEvent } from "react"; import { useTranslation } from "react-i18next"; interface Props { email: string; reset?: (e: MouseEvent) => void; } const SentTip: FC = ({ email, reset }) => { const { t } = useTranslation("auth"); return (

{t("check_email")}

{t("check_email_desc", { email })}
); }; export default SentTip;