11 lines
565 B
TypeScript
11 lines
565 B
TypeScript
// Export all stores
|
|
export { useDashboardStore } from './dashboardStore';
|
|
export { useSEODashboardStore } from './seoDashboardStore';
|
|
export { useSharedDashboardStore } from './sharedDashboardStore';
|
|
export { useSemanticDashboardStore } from './semanticDashboardStore';
|
|
|
|
// Re-export types for convenience
|
|
export type { DashboardStore } from './dashboardStore';
|
|
export type { SEODashboardStore } from './seoDashboardStore';
|
|
export type { SharedDashboardState } from './sharedDashboardStore';
|
|
export type { SemanticDashboardStore } from './semanticDashboardStore';
|