@demyz/google-payments
v1.0.2
Published
Google Pyaments Client
Downloads
3
Readme
Google Payments Client
import {
GooglePayments,
defaultGooglePaymentsParams,
loadGooglePaymentsScript,
} from './main';
const params = {
...defaultGooglePaymentsParams,
buttonSelector: document.getElementById('gpay-container'),
}
const main = async () => {
try {
await loadGooglePaymentsScript();
const gPay = new GooglePayments(params);
await gPay.init();
} catch(e) {
console.error(e);
}
}
main();