React Native
0
Вклад в тег
useEffect(() => {
fetch('https://prava74.ru/questions/AB/tickets/'+istr+'.json')
.then((response) => response.json())
.then((json) => setData(json))
.catch((error) => console.error(error))
.finally(() => setLoading(false));
}, []);