import { motion } from 'framer-motion'; import { useNavigate } from '@/shared/lib/hooks/use-navigate'; import { PATHS } from "@/shared/constants/paths"; import { FilterMotionDuration, FilterMotionStyle, FilterMotionVariants } from '@/entities/common/model/constant'; export interface LinkPaymentApplySuccessPageProps { pageOn: boolean; setPageOn: (pageOn: boolean) => void; resultMessage?: string; } export const LinkPaymentApplySuccessPage = ({ pageOn, setPageOn, resultMessage }: LinkPaymentApplySuccessPageProps) => { const { navigate } = useNavigate(); const onClickToClose = () => { setPageOn(false); navigate(PATHS.additionalService.linkPayment.shippingHistory); }; return ( <>

링크결제_분리승인

결과 : {resultMessage || '성공적으로 처리되었습니다'}

); };