()
| 275 | |
| 276 | // Benchmarks |
| 277 | export function useBenchmarks() { |
| 278 | return useQuery({ |
| 279 | queryKey: queryKeys.benchmarks, |
| 280 | queryFn: () => api.getBenchmarks(), |
| 281 | }); |
| 282 | } |
| 283 | |
| 284 | export function useBenchmark(id: string) { |
| 285 | return useQuery({ |
no test coverage detected