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

16 lines
307 B
JavaScript
Raw Normal View History

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