chore(react/collections): start porting geomap

This commit is contained in:
Elian Doran
2025-09-03 23:17:35 +03:00
parent 5ea15cc7eb
commit 1969ce562a
27 changed files with 165 additions and 107 deletions

View File

@@ -0,0 +1,16 @@
import Map from "./map";
import "./index.css";
const DEFAULT_COORDINATES: [number, number] = [3.878638227135724, 446.6630455551659];
const DEFAULT_ZOOM = 2;
export default function GeoView() {
return (
<div className="geo-view">
<Map
coordinates={DEFAULT_COORDINATES}
zoom={DEFAULT_ZOOM}
/>
</div>
);
}