UNPKG

react-query

Version:

Hooks for managing, caching and syncing asynchronous and remote data in React

8 lines (7 loc) 300 B
import { QueryObserver } from '../core'; import { parseQueryArgs } from '../core/utils'; import { useBaseQuery } from './useBaseQuery'; // HOOK export function useQuery(arg1, arg2, arg3) { var parsedOptions = parseQueryArgs(arg1, arg2, arg3); return useBaseQuery(parsedOptions, QueryObserver); }