paxton-front/api/queries/useGetProductsList.ts
2025-09-05 17:33:46 +03:00

11 lines
283 B
TypeScript

import { useQuery } from '@tanstack/vue-query'
import { getProductsList } from '~/api/endpoints/getProductsList'
export const useGetProductsList = () => {
return useQuery({
queryKey: ['get-products-list'],
queryFn: () => getProductsList(),
staleTime: Infinity,
})
}