mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 14:57:26 +08:00
16 lines
336 B
JavaScript
16 lines
336 B
JavaScript
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>
|
|
);
|
|
};
|
|
|
|
export default Onboarding;
|