import CarouselCompetences from "./CarouselCompetences"; interface ModalGlossaireProps { mot: { mot_clef: string; description: string; images?: any[]; }; onClose: () => void; } export default function ModalGlossaire({ mot, onClose }: ModalGlossaireProps) { return (
{mot.description}
{/* Carrousel d'images si disponible */} {mot.images && mot.images.length > 0 && (