mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-16 18:16:08 +00:00
- extract 541-line component into step modules - wrap accounts in useMemo for stable deps - add barrel export in setup/index.ts
31 lines
602 B
TypeScript
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';
|