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