| 1234567891011121314151617 |
- export const getAllProducts = async (
- pageIndex,
- category = 'All',
- filter = 'asc'
- ) => {
- const response = await fetch(
- `http://localhost:3000/api/product?pageIndex=${pageIndex}&category=${category}&filterType=${filter}`
- );
-
- const data = await response.json();
-
- if (!response.ok) {
- throw new Error(data.message || 'Something went wrong!');
- }
-
- return data;
- };
|