2025-08-28 10:41:04 +02:00
|
|
|
// Onboarding domain components
|
|
|
|
|
export { default as OnboardingWizard } from './OnboardingWizard';
|
2025-09-03 14:06:38 +02:00
|
|
|
|
|
|
|
|
// Individual step components
|
|
|
|
|
export { BakerySetupStep } from './steps/BakerySetupStep';
|
2025-09-07 09:01:09 +02:00
|
|
|
export { HistoricalSalesValidationStep } from './steps/HistoricalSalesValidationStep';
|
2025-09-03 14:06:38 +02:00
|
|
|
export { InventorySetupStep } from './steps/InventorySetupStep';
|
|
|
|
|
export { SuppliersStep } from './steps/SuppliersStep';
|
|
|
|
|
export { MLTrainingStep } from './steps/MLTrainingStep';
|
|
|
|
|
export { CompletionStep } from './steps/CompletionStep';
|
2025-08-28 10:41:04 +02:00
|
|
|
|
|
|
|
|
// Re-export types from wizard
|
|
|
|
|
export type { OnboardingStep, OnboardingStepProps } from './OnboardingWizard';
|