"Overlapping Marker Spiderfier for Leaflet"Bibliothek in ein ES Module umwandeln

This commit is contained in:
ISA
2024-04-17 14:37:13 +02:00
parent 3f07c7633e
commit 6f673829fd
4 changed files with 145 additions and 2 deletions

View File

@@ -1,6 +1,12 @@
import "../styles/global.css"; // Pfad zur globalen CSS-Datei anpassen
import Script from "next/script";
import React from "react";
export default function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />;
return (
<>
<Component {...pageProps} />
</>
);
}