import { useState } from 'react';
import { CulqiProvider, useCheckout } from 'react-culqi-next';
const MyApp = () => {
return (
<CulqiProvider publicKey="pk_test_4YrVwTo....your_public_key">
<MyButton />
</CulqiProvider>
);
};
const MyButton = () => {
const [amount, setAmount] = useState(10000);
const [title, setTitle] = useState('White T-shirt');
const { openCulqi, token, error } = useCheckout({
settings: {
title: title,
currency: 'PEN',
amount: amount,
options: {
lang: 'auto',
installments: false,
paymentMethods: {
tarjeta: true,
yape: true,
},
style: {
logo: '',
bannerColor: '',
buttonBackground: '',
buttonText: '',
buttonTextColor: '',
linksColor: '',
menuColor: '',
priceColor: '',
},
},
},
onClose: () => {
console.log('Handle the closing of the modal');
},
onToken: token => {
console.log('Send your token to the backend', token);
},
onError: error => {
console.log('handle the errors', error);
},
});
return (
<>
<button onClick={openCulqi}>Pay now</button>
</>
);
};