Int_Prog/лаб3/lab3/public/scripts/api/fetchProductById.js

6 lines
186 B
JavaScript
Raw Permalink Normal View History

2024-01-18 23:29:33 +04:00
import { serverPath } from "../variables.js";
export async function fetchProductById(id) {
const response = await fetch(`${serverPath}/products?id=${id}`);
return response.json();
}