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

15 lines
262 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
export function useStats() {
2026-05-28 12:34:01 -04:00
const statsQuery = useQuery({
queryKey: ['stats'],
queryFn: getStats,
})
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
}