File size: 535 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import CheckoutPaymentMethods, { CheckoutPaymentMethodsTitle } from './checkout-payment-methods';
import type { CheckoutStepProps } from '../types';
export function getDefaultPaymentMethodStep(): CheckoutStepProps {
return {
stepId: 'payment-method-step',
isCompleteCallback: () => true,
className: 'checkout__payment-method-step',
titleContent: <CheckoutPaymentMethodsTitle />,
activeStepContent: <CheckoutPaymentMethods isComplete={ false } />,
completeStepContent: <CheckoutPaymentMethods summary isComplete />,
};
}
|