9 lines
423 B
TypeScript
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';
|