'use client' import dynamic from 'next/dynamic' import type { EventListItem } from '@cal/shared' const SpatioTemporalMapInner = dynamic( () => import('./SpatioTemporalMap').then((mod) => mod.SpatioTemporalMap), { ssr: false, loading: () => (
Loading map...
), } ) interface Props { events: EventListItem[] } export function SpatioTemporalMap({ events }: Props) { return }