woocommerce-paypal-payments/modules/ppcp-googlepay/resources/js/GooglepayManagerBlockEditor.js
2024-11-07 01:00:53 +01:00

17 lines
371 B
JavaScript

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