import { Dialog, Transition } from "@headlessui/react"; import { Fragment } from "react"; const PaymentModal = (props) => { function closeModal() { props.setPayment(false); } return ( <>
{/* This element is to trick the browser into centering the modal contents. */}
Payment successful 🎉

Your payment has been successfully submitted. Thank you for your support!

); }; export default PaymentModal;