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, });
1 2 3 4 5 6 7 8 9 10
import { queryOptions } from '@tanstack/react-query'; import { getScans } from '~/services/scans'; // Query for all scans export const scansQuery = () => queryOptions({ queryKey: ['scans'], queryFn: getScans, });