import { __, sprintf } from '@wordpress/i18n'; import { Button } from '@wordpress/components'; import OnboardingHeader from '../../ReusableComponents/OnboardingHeader'; import PaymentMethodIcons from '../../ReusableComponents/PaymentMethodIcons'; import Separator from '../../ReusableComponents/Separator'; import WelcomeDocs from '../../ReusableComponents/WelcomeDocs/WelcomeDocs'; import AdvancedOptionsForm from './Components/AdvancedOptionsForm'; import AccordionSection from '../../ReusableComponents/AccordionSection'; const StepWelcome = ( { setStep, currentStep, setCompleted } ) => { return (

{ __( `Click the button below to be guided through connecting your existing PayPal account or creating a new one.You will be able to choose the payment options that are right for your store.`, 'woocommerce-paypal-payments' ) }

); }; const WelcomeFeatures = () => { return (
{ __( 'Deposits', 'woocommerce-paypal-payments' ) }

{ __( 'Instant', 'woocommerce-paypal-payments' ) }

{ __( 'Payment Capture', 'woocommerce-paypal-payments' ) }

{ __( 'Authorize only or Capture', 'woocommerce-paypal-payments' ) }

{ __( 'Recurring payments', 'woocommerce-paypal-payments' ) }

{ __( 'Supported', 'woocommerce-paypal-payments' ) }

); }; export default StepWelcome;