Add business page

This commit is contained in:
inpsyde-maticluznar 2024-10-23 12:42:29 +02:00
parent 3b6db73e8d
commit b903ed29fe
No known key found for this signature in database
GPG key ID: D005973F231309F6
3 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1 @@
const SelectBox = ( props ) => {};

View file

@ -1,10 +1,12 @@
import Container from '../../reusable-components/container';
import StepWelcome from './step-welcome.js';
import StepBusiness from './step-business';
const Onboarding = () => {
return (
<Container>
<div className="ppcp-r-card">
<StepBusiness />
<StepWelcome />
</div>
</Container>

View file

@ -0,0 +1,22 @@
import OnboardingHeader from '../../reusable-components/onboarding-header.js';
import { __, sprintf } from '@wordpress/i18n';
import { Button, TextControl } from '@wordpress/components';
import PaymentMethodIcons from '../../reusable-components/payment-method-icons';
import SettingsToggleBlock from '../../reusable-components/settings-toggle-block';
import Separator from '../../reusable-components/separator';
const StepBusiness = () => {
return (
<div className="ppcp-r-page-welcome">
<OnboardingHeader
title={ __(
'Tell Us About Your Business',
'woocommerce-paypal-payments'
) }
/>
<div className="ppcp-r-inner-container"></div>
</div>
);
};
export default StepBusiness;