import type { EventInfo } from '../types'; import { EventCardView } from '../event-card.view'; import { EventGridEmpty } from './event-grid.empty'; export function EventGridView({ events, footer }: { events: EventInfo[]; footer: (event: EventInfo) => React.ReactNode }) { return ( <> {events.length > 0 && (