diff --git a/chatgpt-to-claude/src/components/wizard/WizardNav.tsx b/chatgpt-to-claude/src/components/wizard/WizardNav.tsx new file mode 100644 index 000000000..67ab1b7cc --- /dev/null +++ b/chatgpt-to-claude/src/components/wizard/WizardNav.tsx @@ -0,0 +1,52 @@ +import type { WizardStep } from "./useWizardState"; + +interface WizardNavProps { + currentStep: WizardStep; + canGoNext: boolean; + onNext: () => void; + onBack: () => void; + onReset: () => void; +} + +export default function WizardNav({ + currentStep, + canGoNext, + onNext, + onBack, + onReset, +}: WizardNavProps) { + return ( +