Files
motovaultpro/frontend/src/core/store/index.ts
Eric Gullickson 0e8c6070ef fix: sync mobile routing with browser URL for direct navigation (refs #163)
URL-to-screen sync on mount and screen-to-URL sync via replaceState
enable direct URL navigation, page refresh, and bookmarks on mobile.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 19:35:53 -06:00

12 lines
437 B
TypeScript

// Export navigation store
export { useNavigationStore, routeToScreen, screenToRoute } 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