geothermie-atlas/app/gwwp/page.tsx

10 lines
225 B
TypeScript
Raw Normal View History

2023-10-19 09:07:33 +00:00
'use client';
import dynamic from 'next/dynamic';
const MapComponent = dynamic(() => import('./grundlagenkarte-gwwp'), { ssr: false });
export default function Grundlagenkarte() {
return <MapComponent></MapComponent>;
}