Files
ccs/ui/src/components/quick-setup-wizard.tsx
T
kaitranntt 81196b0ff1 refactor(ui): split quick-setup-wizard into setup/wizard/ directory
- extract 541-line component into step modules

- wrap accounts in useMemo for stable deps

- add barrel export in setup/index.ts
2025-12-19 19:41:51 -05:00

31 lines
602 B
TypeScript

/**
* Quick Setup Wizard - Re-export from modular structure
* @deprecated Import from '@/components/setup/wizard' directly
*/
/* eslint-disable react-refresh/only-export-components */
export {
QuickSetupWizard,
ProgressIndicator,
ProviderStep,
AuthStep,
AccountStep,
VariantStep,
SuccessStep,
PROVIDERS,
ALL_STEPS,
getStepProgress,
} from './setup/wizard';
export type {
WizardStep,
QuickSetupWizardProps,
ProviderOption,
ProviderStepProps,
AuthStepProps,
AccountStepProps,
VariantStepProps,
SuccessStepProps,
ProgressIndicatorProps,
} from './setup/wizard';