"use client"; import React from 'react'; import mapboxgl from 'mapbox-gl'; interface Props { mapRef: React.MutableRefObject } export default function ZoomControls({ mapRef }: Props) { return (
); }