woocommerce-paypal-payments/modules/ppcp-applepay/resources/js/ApplepayManagerBlockEditor.js

18 lines
366 B
JavaScript
Raw Normal View History

import ApplepayButton from './Block/components/ApplePayButton';
const ApplePayManagerBlockEditor = ( {
namespace,
buttonConfig,
ppcpConfig,
buttonAttributes,
} ) => (
<ApplepayButton
namespace={ namespace }
buttonConfig={ buttonConfig }
ppcpConfig={ ppcpConfig }
buttonAttributes={ buttonAttributes }
/>
);
2024-04-23 15:00:05 +02:00
export default ApplePayManagerBlockEditor;