import OnboardingHeader from '../../ReusableComponents/OnboardingHeader.js'; import { __, sprintf } from '@wordpress/i18n'; import { Button, TextControl } from '@wordpress/components'; import PaymentMethodIcons from '../../ReusableComponents/PaymentMethodIcons'; import SettingsToggleBlock from '../../ReusableComponents/SettingsToggleBlock'; import Separator from '../../ReusableComponents/Separator'; const StepWelcome = ( { setStep, currentStep } ) => { return (
); }; 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' ) }

); }; const WelcomeForm = () => { const advancedUsersDescription = sprintf( // translators: %s: Link to PayPal REST application guide __( 'For advanced users: Connect a custom PayPal REST app for full control over your integration. For more information on creating a PayPal REST application, click here.', 'woocommerce-paypal-payments' ), '#' ); return ( <> ); }; export default StepWelcome;