async function getProjects() { const res = await fetch("http://127.0.0.1:5000/api/projects/", { cache: "no-store", }); if(!res.ok){ throw new Error("Erreur lors de la récupération des projets depuis l'API"); } return res.json(); } export default async function ProjectsPage() { const projects = await getProjects(); return(

Mes projets

); }