mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
15 lines
307 B
JavaScript
15 lines
307 B
JavaScript
import ApplepayButton from './Block/components/ApplePayButton';
|
|
|
|
const ApplePayManagerBlockEditor = ( {
|
|
namespace,
|
|
buttonConfig,
|
|
ppcpConfig,
|
|
} ) => (
|
|
<ApplepayButton
|
|
namespace={ namespace }
|
|
buttonConfig={ buttonConfig }
|
|
ppcpConfig={ ppcpConfig }
|
|
/>
|
|
);
|
|
|
|
export default ApplePayManagerBlockEditor;
|