import type { WizardStep } from "../types"; export default function Stepper({ steps, activeStep, onSelect }: { steps: WizardStep[]; activeStep: string; onSelect: (id: string) => void }) { return (
    {steps.map((step, index) => (
  1. ))}
); }