woocommerce-paypal-payments/modules/ppcp-googlepay/resources/js/GooglepayManagerBlockEditor.js
2024-10-09 18:58:55 +02:00

15 lines
312 B
JavaScript

import GooglepayButton from './Block/components/GooglepayButton';
const GooglepayManagerBlockEditor = ( {
namespace,
buttonConfig,
ppcpConfig,
} ) => (
<GooglepayButton
namespace={ namespace }
buttonConfig={ buttonConfig }
ppcpConfig={ ppcpConfig }
/>
);
export default GooglepayManagerBlockEditor;