"use client"; import { PaymentMethodForm } from "../../../stripe-customer/components/forms/PaymentMethodForm"; import { SectionHeader } from "../../../../../components/typography"; type WizardStepPaymentMethodProps = { onBack: () => void; onSuccess: () => void; isProcessing: boolean; }; export function WizardStepPaymentMethod({ onBack, onSuccess, isProcessing }: WizardStepPaymentMethodProps) { return (
Add Payment Method

Enter your card details to complete your subscription

); }