Du kannst nicht mehr als 25 Themen auswählen
Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
| 123456789101112131415 |
- import apiEndpoints from '../apiEndpoints';
-
- export const getProductsId = async () => {
- const response = await fetch(
- `http://localhost:3000${apiEndpoints.productsIds}`
- );
-
- const data = await response.json();
-
- if (!response.ok) {
- throw new Error(data.message || 'Something went wrong!');
- }
-
- return data;
- };
|