Files
awoooi/apps/web/src/stores/index.ts
OG T 196d269b92 feat: add all application source code
- apps/api: FastAPI backend with Dockerfile
- apps/web: Next.js frontend with Dockerfile
- apps/sensor: Signal collection agent
- packages: shared packages

Co-Authored-By: Claude <noreply@anthropic.com>
2026-03-22 18:57:44 +08:00

22 lines
386 B
TypeScript

export * from './agent.store'
export * from './dashboard.store'
// Re-export selectors for convenience
export {
selectAgentStatus,
selectThinkingStream,
selectIsThinking,
selectHasError,
selectError,
} from './agent.store'
export {
useConnectionStatus,
useHosts,
useHostByIp,
useOverallStatus,
useAlerts,
useMockMode,
useLastUpdate,
} from './dashboard.store'