import React from "react"; import toast from "react-hot-toast"; export default function PaymentModal({ isOpen, onClose, amount }) { if (!isOpen) return null; const handlePayment = () => { toast.error("微信支付接口调用失败"); onClose(); }; return (

支付方式

支付金额

{amount.toFixed(2)}元

微信支付
); }