Mit rechte Maustaste Link in localStorage speichern in setupPolylines.js

This commit is contained in:
ISA
2024-09-04 15:50:27 +02:00
parent 421844611f
commit f8e35cece6
7 changed files with 712 additions and 7 deletions

View File

@@ -5,6 +5,8 @@ import { readPoiMarkersStore } from "../store/selectors/readPoiMarkersStore";
import { poiReadFromDbTriggerAtom } from "../store/atoms/poiReadFromDbTriggerAtom";
const MapComponentWithNoSSR = dynamic(() => import("../components/MapComponent"), { ssr: false });
// TestScript ohne SSR
const TestScriptWithNoSSR = dynamic(() => import("../components/TestScript"), { ssr: false });
export default function Home() {
const poiReadTrigger = useRecoilValue(poiReadFromDbTriggerAtom);
@@ -64,6 +66,7 @@ export default function Home() {
return (
<div>
<MapComponentWithNoSSR locations={locations} onAddLocation={handleAddLocation} onLocationUpdate={handleLocationUpdate} />
<TestScriptWithNoSSR />
</div>
);
}