mirror of
https://github.com/zadam/trilium.git
synced 2025-11-11 07:45:51 +01:00
17 lines
385 B
TypeScript
17 lines
385 B
TypeScript
|
|
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>
|
||
|
|
);
|
||
|
|
}
|