📦 EqualifyEverything / equalify-dashboard

📄 scans.ts · 10 lines
1
2
3
4
5
6
7
8
9
10import { queryOptions } from '@tanstack/react-query';
import { getScans } from '~/services/scans';

// Query for all scans
export const scansQuery = () =>
  queryOptions({
    queryKey: ['scans'],
    queryFn: getScans,
  });