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';
import { useOnboardingStepWelcome } from '../../../data';
import DataStoreControl from '../../ReusableComponents/DataStoreControl';
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 {
isSandboxMode,
setSandboxMode,
isManualConnectionMode,
setManualConnectionMode,
clientId,
setClientId,
clientSecret,
setClientSecret,
} = useOnboardingStepWelcome();
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'
),
'https://woocommerce.com/document/woocommerce-paypal-payments/#manual-credential-input '
);
return (
<>
>
);
};
export default StepWelcome;