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
2024-12-03 16:06:41 +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 don’ t have an account yet, don’ t worry - we’ ll 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" >
2024-12-03 16:06:41 +01:00
< ConnectionButton
title = { _ _ (
2024-11-12 15:01:29 +01:00
'Connect to PayPal' ,
'woocommerce-paypal-payments'
) }
2024-12-03 16:06:41 +01:00
/ >
2024-11-12 15:01:29 +01:00
< / d i v >
< / d i v >
< / d i v >
) ;
} ;
export default StepCompleteSetup ;