import { useWizardStore } from './store/wizardStore'; import CategorySelection from './pages/Steps/CategorySelection'; import OperationSelection from './pages/Steps/OperationSelection'; import AttributeForm from './pages/Steps/AttributeForm'; function App() { const step = useWizardStore((state) => state.step); return (
SIG-CM Wizard de Publicación
Paso {step} de 5
{/* Progress Bar */}
{step === 1 && } {step === 2 && } {step === 3 && } {step === 4 &&
Paso 4: Fotos (Coming Soon)
} {step === 5 &&
Paso 5: Resumen y Pago (Coming Soon)
}
); } export default App;