'use client' import type { WizardStep } from './types' interface WizardStepperProps { steps: WizardStep[] currentStep: number onStepClick: (index: number) => void } export function WizardStepper({ steps, currentStep, onStepClick }: WizardStepperProps) { return (
{steps.map((step, index) => (
{index < steps.length - 1 && (
)}
))}
) }