mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 13:44:42 +08:00
29 lines
630 B
JavaScript
29 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;
|