Obtenir une erreur après avoir mis la fonction asynchrone dans UseEffecte
useEffect(() => {
// add async function here
return () => {
console.log("This will be logged on unmount");
}
})
tam11a