woocommerce-paypal-payments/modules/ppcp-local-alternative-payment-methods/resources/js/blik-payment-method.js
Emili Castells Guasch 11693c8df2 Add blik payment
2024-08-20 16:02:35 +02:00

18 lines
462 B
JavaScript

import { registerPaymentMethod } from '@woocommerce/blocks-registry';
import { Blik } from './blik-block';
const config = wc.wcSettings.getSetting( 'ppcp-blik_data' );
registerPaymentMethod( {
name: config.id,
label: <div dangerouslySetInnerHTML={ { __html: config.title } } />,
content: <Blik config={ config } />,
edit: <div></div>,
ariaLabel: config.title,
canMakePayment: () => {
return true;
},
supports: {
features: config.supports,
},
} );