import React from 'react'; import NavBar from '@/components/NavBar'; import { ArrowLeft, CreditCard, PlusCircle } from 'lucide-react'; import { useNavigate } from 'react-router-dom'; import { Button } from '@/components/ui/button'; import { useToast } from '@/hooks/useToast.wrapper'; const PaymentMethods = () => { const navigate = useNavigate(); const { toast } = useToast(); const handleAddPayment = () => { toast({ title: "알림", description: "이 결제 기능은 아직 지원하지 않습니다." }); }; return
{/* Header */}

결제 방법

{/* 등록된 결제 수단이 없습니다 메시지 */}

등록된 결제 수단이 없습니다

새로운 결제 수단을 추가해 보세요

{/* Notice */}

결제 기능은 아직 지원하지 않습니다.

{/* Add Payment Method Button */}
; }; export default PaymentMethods;