Files
test_dashboard/dashboard/src/hooks/useStats.js
T

16 lines
289 B
JavaScript
Raw Normal View History

2026-06-01 15:07:49 -04:00
import { useQuery } from '@tanstack/react-query'
import { getStats } from '../lib/api'
2026-05-20 11:52:18 -04:00
2026-06-02 11:31:11 -04:00
export function useStats(enabled = true) {
2026-05-28 12:34:01 -04:00
const statsQuery = useQuery({
queryKey: ['stats'],
queryFn: getStats,
2026-06-02 11:31:11 -04:00
enabled,
2026-05-28 12:34:01 -04:00
})
return {
...statsQuery,
2026-06-01 15:07:49 -04:00
isScanning: false,
2026-05-28 12:34:01 -04:00
}
2026-05-20 11:52:18 -04:00
}