Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 5x 3x 2x 2x 2x 2x | import { useQuery } from "react-query";
import { Package } from "../types";
function usePackage(packageName: string | undefined) {
return useQuery(["packageData", packageName], async () => {
const response = await fetch(`/api/packages/${packageName}`);
Iif (!response.ok) {
throw new Error("There was a problem fetching the package data");
}
const packageData = await response.json();
Iif (!packageData.success) {
throw new Error(packageData?.message);
}
return packageData.data as Package;
});
}
export default usePackage;
|