dupontReact
Pages
Accueil
Plan du cours
mercredi 26 juin 2024
fetch
useEffect
(()
=>
{
fetch
(
"https://fakestoreapi.com/products/"
)
.
then
((
res
)
=>
res
.
json
())
.
then
((
json
)
=>
{
console
.
log
(
json
);
setProducts
(
json
);
});
}, []);
Article plus récent
Article plus ancien
Accueil