Files
ALwrity/frontend/src/stores/index.ts
2025-08-06 12:48:02 +05:30

9 lines
423 B
TypeScript

// Export all stores
export { useDashboardStore } from './dashboardStore';
export { useSEODashboardStore } from './seoDashboardStore';
export { useSharedDashboardStore } from './sharedDashboardStore';
// Re-export types for convenience
export type { DashboardStore } from './dashboardStore';
export type { SEODashboardStore } from './seoDashboardStore';
export type { SharedDashboardState } from './sharedDashboardStore';