Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
| 1234567891011121314 |
- import { PersonIdsResponse } from '../utils/interface/personInterface';
- import apiEndpoints from './apiEndpoints';
-
- export const getDataIds = async (): Promise<PersonIdsResponse> => {
- const response = await fetch(`http://localhost:3000${apiEndpoints.dataIds}`);
-
- const data: PersonIdsResponse = await response.json();
-
- if (!response.ok) {
- throw new Error(data.message || 'Something went wrong!');
- }
-
- return data;
- };
|