import { Stripe } from '../../PaymentHandler/payments/Stripe/Stripe' import { StripeWrapper } from '../../PaymentHandler/payments/Stripe/StripeWrapper' import { StripeBillingFields } from '../../PaymentHandler/payments/Stripe/StripeBillingFields' import type { IPaymentStepStripeSectionProps } from '../../types' export const PaymentStepStripeSection = ({ clientSecret, selectedMethod, onLoadingChange, stripeWrapperRef, formData, setFormData, stripeFields, }: IPaymentStepStripeSectionProps) => { return (
{selectedMethod === 'stripe' && stripeFields && stripeFields.length > 0 && ( )}
) }