import { format, parseISO } from 'date-fns' interface Event { date: string headline: string description: string } export function Events({ props: events }: { props: Event[] }) { return (