import { useIntl } from '@cap-rel/smartcommon'; function EventCard({ event }) { const intl = useIntl(); // Format par défaut const dateFormatted = intl.DateTimeFormat(event.date); // "15/03/2024, 14:30:00" // Format personnalisé const dateOnly = intl.DateTimeFormat(event.date, 'fr-FR', { year: 'numeric', month: 'long', day: 'numeric' }); // "15 mars 2024" // Heure seule const timeOnly = intl.DateTimeFormat(event.date, 'fr-FR', { hour: '2-digit', minute: '2-digit' }); // "14:30" return (

{event.title}

Le {dateOnly} à {timeOnly}

); }