import { IMAGE_ROOT } from '@/shared/constants/common'; import { motion } from 'framer-motion'; export interface EscrowMailResendBottomSheetProps { setBottomSheetOn: (bottomSheetOn: boolean) => void; bottomSheetOn: boolean; callMailResend: () => void; }; export const EscrowMailResendBottomSheet = ({ setBottomSheetOn, bottomSheetOn, callMailResend }: EscrowMailResendBottomSheetProps) => { const onClickToClose = () => { setBottomSheetOn(false); }; const onClickToMailResend = () => { callMailResend(); }; const variants = { hidden: { y: '100%' }, visible: { y: '0%' }, }; return ( <> { (bottomSheetOn) &&
}등록된 메일 정보가 없습니다.
이메일 인증정보를 사용자관리 메뉴에서 추가 후 신청하세요.