Files
motovaultpro/frontend/src/core/store/index.ts
Eric Gullickson a052040e3a Initial Commit
2025-09-17 16:09:15 -05:00

12 lines
407 B
TypeScript

// Export navigation store
export { useNavigationStore } from './navigation';
export type { MobileScreen, VehicleSubScreen } from './navigation';
// Export user store
export { useUserStore } from './user';
// Export app store (compatibility)
export { useAppStore } from './app';
// Note: This replaces any existing store exports and provides
// centralized access to all Zustand stores in the application