import VideoCard from "./VideoCard"; export default function Recommendations({videos}) { return (

Recommandations

{videos && videos.length > 0 ? videos.map((video, index) => ( )) : (

Aucune recommandation disponible

)}
) }