import type { EventInfo } from './types'; import { EventCardView } from './event-card.view'; export function EventGridView({ events, assembleFooter }: { events: EventInfo[]; assembleFooter: (event: EventInfo) => React.ReactNode }) { return (
{events.map(event => ( ))}
); }