mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 14:57:26 +08:00
14 lines
357 B
JavaScript
14 lines
357 B
JavaScript
|
import StepWelcome from './StepWelcome';
|
||
|
import StepBusiness from './StepBusiness';
|
||
|
import StepProducts from './StepProducts';
|
||
|
|
||
|
export const getSteps = ( flags ) => {
|
||
|
const allSteps = [ StepWelcome, StepBusiness, StepProducts ];
|
||
|
|
||
|
if ( ! flags.canUseCasualSelling ) {
|
||
|
return allSteps.filter( ( step ) => step !== StepBusiness );
|
||
|
}
|
||
|
|
||
|
return allSteps;
|
||
|
};
|