diff options
Diffstat (limited to 'components/map-wrapper.tsx')
| -rw-r--r-- | components/map-wrapper.tsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/components/map-wrapper.tsx b/components/map-wrapper.tsx new file mode 100644 index 0000000..2407702 --- /dev/null +++ b/components/map-wrapper.tsx @@ -0,0 +1,10 @@ + +"use client" + +import dynamic from 'next/dynamic' + +const Map = dynamic(() => import('./map')) + +export default function MapWrapper() { + return <Map /> +} |
