paxton-front/api/queries/useGetProductList.ts
2025-07-23 20:58:21 +03:00

10 lines
238 B
TypeScript

import { useQuery } from '@tanstack/vue-query'
import { getProductList } from '~/api/endpoints'
export const useGetProductList = () => {
return useQuery({
queryKey: ['get-product-list'],
queryFn: () => getProductList(),
})
}