import { __ } from '@wordpress/i18n'; import PricingDescription from '../PricingDescription'; import AcdcFlow from './AcdcFlow'; import BcdcFlow from './BcdcFlow'; const WelcomeDocs = ( { useAcdc, isFastlane, isPayLater, storeCountry } ) => { return (

{ __( `Want to know more about PayPal Payments?`, 'woocommerce-paypal-payments' ) }

{ useAcdc ? ( ) : ( ) }
); }; export default WelcomeDocs;