Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

useFetchProductData.js 278B

123456789
  1. import { useQuery } from '@tanstack/react-query';
  2. import { getProductData } from '../requests/products/producDataRequest';
  3. export const useFetchSingleProduct = (customID) => {
  4. return useQuery(
  5. ['product', customID],
  6. async () => await getProductData(customID)
  7. );
  8. };