4 lines
158 B
TypeScript
4 lines
158 B
TypeScript
export const getAllProducts = async () => {
|
|
const response = await fetch("https://mikayla-spice-market-api.herokuapp.com/product");
|
|
return response;
|
|
} |