'use client' import { MapProvider } from '../../context' import { MapInner } from './MapInner' import type { MapContainerProps } from './types' export type { MapContainerProps, GeolocateOptions, GeolocatePosition } from './types' export function MapContainer({ children, initialViewport, className, ...props }: MapContainerProps) { return (
{children}
) } /** * Use this when you need the map inside an existing MapProvider */ export function MapView(props: Omit) { return }