Int_Prog/lab3/public/scripts/api/fetchProductById.js
2024-01-18 23:29:33 +04:00

6 lines
186 B
JavaScript

import { serverPath } from "../variables.js";
export async function fetchProductById(id) {
const response = await fetch(`${serverPath}/products?id=${id}`);
return response.json();
}