import { StartPayButton, StartPayProvider } from "startbutton-payment-gateway"; const customer = { name: "Pradeep Kumar", email: "test@example.com", phone: "9999999999" }; export const BasicPaymentExample = () => ( console.log("Payment authorized", response)} onPaymentDeclined={(response) => console.log("Payment declined", response)} onPaymentAborted={(response) => console.log("Payment cancelled", response)} onPaymentException={(response) => console.log("Payment exception", response)} onPaymentSettled={(response) => console.log("Payment settled", response)} > Start Payment );