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

17 lines
366 B
JavaScript

import ApplepayButton from './Block/components/ApplePayButton';
const ApplePayManagerBlockEditor = ( {
namespace,
buttonConfig,
ppcpConfig,
buttonAttributes,
} ) => (
<ApplepayButton
namespace={ namespace }
buttonConfig={ buttonConfig }
ppcpConfig={ ppcpConfig }
buttonAttributes={ buttonAttributes }
/>
);
export default ApplePayManagerBlockEditor;