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.ts 383B

1234567891011121314
  1. import { useQuery } from '@tanstack/react-query';
  2. import { getProductData } from '../requests/products/producDataRequest';
  3. export const useFetchSingleProduct = (customID: string) => {
  4. return useQuery(
  5. ['product', customID],
  6. async () => await getProductData(customID),
  7. {
  8. refetchOnWindowFocus: false,
  9. staleTime: 60000,
  10. cacheTime: 300000,
  11. }
  12. );
  13. };