import OnboardingHeader from '../../ReusableComponents/OnboardingHeader.js'; import SelectBoxWrapper from '../../ReusableComponents/SelectBoxWrapper.js'; import SelectBox from '../../ReusableComponents/SelectBox.js'; import { __ } from '@wordpress/i18n'; import PaymentMethodIcons from '../../ReusableComponents/PaymentMethodIcons'; import { useState } from '@wordpress/element'; import Navigation from '../../ReusableComponents/Navigation'; const StepBusiness = ( { setStep, currentStep, stepperOrder } ) => { const [ businessCategory, setBusinessCategory ] = useState( null ); const BUSINESS_RADIO_GROUP_NAME = 'business'; const CASUAL_SELLER_CHECKBOX_VALUE = 'casual_seller'; const BUSINESS_CHECKBOX_VALUE = 'business'; return (
businessCategory !== null } />
); }; export default StepBusiness;