mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-04 08:47:23 +08:00
28 lines
630 B
JavaScript
28 lines
630 B
JavaScript
import AcdcOptionalPaymentMethods from './AcdcOptionalPaymentMethods';
|
|
import BcdcOptionalPaymentMethods from './BcdcOptionalPaymentMethods';
|
|
|
|
const OptionalPaymentMethods = ( {
|
|
useAcdc,
|
|
isFastlane,
|
|
isPayLater,
|
|
storeCountry,
|
|
} ) => {
|
|
return (
|
|
<div className="ppcp-r-optional-payment-methods">
|
|
{ useAcdc ? (
|
|
<AcdcOptionalPaymentMethods
|
|
isFastlane={ isFastlane }
|
|
isPayLater={ isPayLater }
|
|
storeCountry={ storeCountry }
|
|
/>
|
|
) : (
|
|
<BcdcOptionalPaymentMethods
|
|
isPayLater={ isPayLater }
|
|
storeCountry={ storeCountry }
|
|
/>
|
|
) }
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default OptionalPaymentMethods;
|