Files
firma/lib/allProducts.ts
nabijonovdavronbek619@gmail.com cf26b778fc pproducts
2025-12-10 11:43:10 +05:00

11 lines
200 B
TypeScript

import axios from "axios";
export const allProduct = async () => {
try{
const res = await axios.get('')
}catch(err){
console.log("all product error: ",err);
}
};