/** * index.ts * * This file exports all components from the onboarding module for easy importing. */ // Export the main layout export { default as OnboardingLayout } from './OnboardingLayout'; // Export the navigation store export { default as useNavigationStore } from './store/navigationStore'; export { OnboardingStep } from './store/navigationStore'; // Export view components export { default as ConnectView } from './views/ConnectView'; export { default as RepositoryListView } from './views/RepositoryListView'; export { default as TemplateSelectionView } from './views/TemplateSelectionView'; export { default as ConfigureView } from './views/ConfigureView'; export { default as DeploymentOptionsView } from './views/DeploymentOptionsView'; export { default as DeployView } from './views/DeployView'; // Export other components export { default as NavigationSidebar } from './NavigationSidebar'; export { default as ProgressIndicator } from './ProgressIndicator';