woocommerce-paypal-payments/modules/ppcp-googlepay/resources/js/GooglepayManagerBlockEditor.js

16 lines
312 B
JavaScript
Raw Normal View History

2024-10-09 16:38:11 +02:00
import GooglepayButton from './Block/components/GooglepayButton';
const GooglepayManagerBlockEditor = ( {
namespace,
buttonConfig,
ppcpConfig,
} ) => (
<GooglepayButton
namespace={ namespace }
buttonConfig={ buttonConfig }
ppcpConfig={ ppcpConfig }
/>
);
export default GooglepayManagerBlockEditor;