-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobs.txt
62 lines (42 loc) · 1.29 KB
/
obs.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
##criar tela de profile
## Reponsividade
##fazer o menu hamburger ---ok
## editar o banner pra dinâmico ---ok
##criar o footer ---ok
## inserir sem imagem para quando nao retorna banner ---ok
## colocar spinier no carregamento no carousel ---ok
##criar paginação ---ok
## estilizar pagina search ---ok
## estilizar input de pesquisa navbar ----ok
#limitar para dois dígitos os pontos do card ---ok
import React, { useState, useEffect } from "react";
import axios from "axios";
function App() {
const [results, setResults] = useState([]);
const [isLoading, setIsLoading] = useState(false);
useEffect(() => {
setIsLoading(true);
axios.get("https://api.com/results").then((response) => {
const { results } = response.data;
setResults(results);
const ids = results.map((result) => result.id);
const promises = ids.map((id) => axios.get(`https://api.com/${id}`));
Promise.all(promises).then((responses) => {
const data = responses.map((response) => response.data);
console.log(data);
setIsLoading(false);
});
});
}, []);
if (isLoading) {
return <p>Loading...</p>;
}
return (
<ul>
{results.map((result) => (
<li key={result.id}>{result.id}</li>
))}
</ul>
);
}
export default App;