woocommerce-paypal-payments/modules/ppcp-settings/resources/js/Components/Screens/Onboarding/Steps/StepCompleteSetup.js

34 lines
926 B
JavaScript
Raw Normal View History

2024-11-12 15:01:29 +01:00
import { __ } from '@wordpress/i18n';
2025-01-10 13:30:06 +01:00
import OnboardingHeader from '../Components/OnboardingHeader';
import ConnectionButton from '../Components/ConnectionButton';
2024-11-21 19:28:08 +01:00
const StepCompleteSetup = () => {
2024-11-12 15:01:29 +01:00
return (
<div className="ppcp-r-page-products">
<OnboardingHeader
title={ __(
'Complete Your Payment Setup',
'woocommerce-paypal-payments'
) }
description={ __(
'To finalize your payment setup, please log in to PayPal. If you dont have an account yet, dont worry - well guide you through the easy process of creating one.',
'woocommerce-paypal-payments'
) }
/>
2025-05-13 12:51:14 +02:00
<div className="ppcp-r-inner-container ppcp--wide">
2024-11-12 15:01:29 +01:00
<div className="ppcp-r-onboarding-header__description">
<ConnectionButton
title={ __(
2024-11-12 15:01:29 +01:00
'Connect to PayPal',
'woocommerce-paypal-payments'
) }
/>
2024-11-12 15:01:29 +01:00
</div>
</div>
</div>
);
};
export default StepCompleteSetup;