pproducts

This commit is contained in:
nabijonovdavronbek619@gmail.com
2025-12-10 11:43:10 +05:00
parent eec6004b25
commit cf26b778fc
11 changed files with 76 additions and 52 deletions

10
lib/allProducts.ts Normal file
View File

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