"use client"; import nextDynamic from "next/dynamic"; import type { RoutePoint } from "@/lib/models/running"; const RouteMap = nextDynamic(() => import("@/components/route-map").then((m) => m.RouteMap), { ssr: false, loading: () =>
, }); export function RouteMapSection({ points }: { points: RoutePoint[] }) { return ; }