mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 09:08:09 +08:00
Add business page
This commit is contained in:
parent
3b6db73e8d
commit
b903ed29fe
3 changed files with 25 additions and 0 deletions
|
@ -0,0 +1 @@
|
||||||
|
const SelectBox = ( props ) => {};
|
|
@ -1,10 +1,12 @@
|
||||||
import Container from '../../reusable-components/container';
|
import Container from '../../reusable-components/container';
|
||||||
import StepWelcome from './step-welcome.js';
|
import StepWelcome from './step-welcome.js';
|
||||||
|
import StepBusiness from './step-business';
|
||||||
|
|
||||||
const Onboarding = () => {
|
const Onboarding = () => {
|
||||||
return (
|
return (
|
||||||
<Container>
|
<Container>
|
||||||
<div className="ppcp-r-card">
|
<div className="ppcp-r-card">
|
||||||
|
<StepBusiness />
|
||||||
<StepWelcome />
|
<StepWelcome />
|
||||||
</div>
|
</div>
|
||||||
</Container>
|
</Container>
|
||||||
|
|
|
@ -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;
|
Loading…
Add table
Add a link
Reference in a new issue