payment UI preview
payment UI preview
import React, { useState } from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button";
export default function PaymentPreview() { const [submitted, setSubmitted] = useState(false);
return (
QR कोड स्कॅन करून पेमेंट करा
{!submitted ? ( <form onSubmit={(e) => { e.preventDefault(); setSubmitted(true); }} className="space-y-3" >
पेमेंट यशस्वी! तुमचा स्क्रीनशॉट सबमिट झाला आहे.
)}
0 comments :
Please do not enter any spam link in the comment box.