``
This is the top bar or so called nav bar of my site.
But it is what it is.
- We gonna be ok right?
- Ul checking.
const paymentMethods = [
{
supportedMethods: 'basic-card',
data: {
supportedNetworks: ['visa', 'mastercard', 'amex'],
},
},
];
const details = {
displayItems: [
{ label: 'Item 1', amount: '10.00' },
{ label: 'Item 2', amount: '15.00' },
],
total: {
label: 'Total',
amount: '25.00',
},
};
const paymentRequest = new PaymentRequest(paymentMethods, details);
Top comments (0)