From 3f1060d5fe05c75da7bd78a1f20b351dc979eac2 Mon Sep 17 00:00:00 2001 From: 2paperstar Date: Fri, 16 Feb 2024 09:23:46 +0900 Subject: [PATCH] feat: add menu in map page --- src/pages/Map.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/Map.tsx b/src/pages/Map.tsx index 8b46412..d743bea 100644 --- a/src/pages/Map.tsx +++ b/src/pages/Map.tsx @@ -17,6 +17,7 @@ import CircleStyle from 'ol/style/Circle'; import Fill from 'ol/style/Fill'; import Stroke from 'ol/style/Stroke'; import Text from 'ol/style/Text'; +import Menu from './component/Menu'; const MapPage = () => { const wrapperEl = useRef(null); @@ -117,6 +118,7 @@ const MapPage = () => { )} + ); };