11 lines
200 B
TypeScript
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);
|
|
|
|
}
|
|
};
|