mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-08 21:52:55 +08:00
# Conflicts: # modules/ppcp-settings/resources/js/Components/Screens/Onboarding/StepWelcome.js
33 lines
925 B
JavaScript
33 lines
925 B
JavaScript
import { __ } from '@wordpress/i18n';
|
||
|
||
import OnboardingHeader from '../../ReusableComponents/OnboardingHeader';
|
||
import ConnectionButton from './Components/ConnectionButton';
|
||
|
||
const StepCompleteSetup = () => {
|
||
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'
|
||
) }
|
||
/>
|
||
<div className="ppcp-r-inner-container">
|
||
<div className="ppcp-r-onboarding-header__description">
|
||
<ConnectionButton
|
||
title={ __(
|
||
'Connect to PayPal',
|
||
'woocommerce-paypal-payments'
|
||
) }
|
||
/>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
);
|
||
};
|
||
|
||
export default StepCompleteSetup;
|