Files
bakery-ia/frontend/src/components/domain/onboarding/index.ts

12 lines
542 B
TypeScript
Raw Normal View History

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';
export { SmartInventorySetupStep } from './steps/SmartInventorySetupStep';
2025-09-03 14:06:38 +02:00
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';