'use client' import React, { useState } from "react"; import CreditCard from "./CreditCard"; const Payment = () => { const [click, setClick] = useState(false); const handleClick = () => setClick(!click); return (
{/* */}
{/* */}
{/* */}

Your personal data will be use for your order, support your experience through this website & for other purpose described in our privacy policy

{/* */}
); }; export default Payment;