mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
12 lines
314 B
JavaScript
12 lines
314 B
JavaScript
import {useEffect} from '@wordpress/element';
|
|
import {usePayPalCardFields} from "@paypal/react-paypal-js";
|
|
|
|
export const CheckoutHandler = ({getCardFieldsForm}) => {
|
|
const {cardFieldsForm} = usePayPalCardFields();
|
|
|
|
useEffect(() => {
|
|
getCardFieldsForm(cardFieldsForm)
|
|
}, []);
|
|
|
|
return null
|
|
}
|