mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
17 lines
371 B
JavaScript
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;
|