Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. };