From 282ddfe8bd4290280b1e15b738e1555df9618180 Mon Sep 17 00:00:00 2001 From: 1119wj <1119wj@naver.com> Date: Tue, 5 Nov 2024 11:28:55 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EA=B2=80=EC=83=89=EA=B3=BC=20=EB=A7=88?= =?UTF-8?q?=EC=BB=A4=20=EC=97=B0=EB=8F=99=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=EC=BB=B4=ED=8F=AC=EB=84=8C=ED=8A=B8=20#12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/App.tsx | 2 +- frontend/src/Dashboard.tsx | 2 ++ frontend/src/NewPlaceSearchBar.tsx | 48 ++++++++++++++++++++++++++++++ 3 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 frontend/src/NewPlaceSearchBar.tsx diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 9e96eb86..44ffbedf 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -24,7 +24,7 @@ function App() { ); } diff --git a/frontend/src/Dashboard.tsx b/frontend/src/Dashboard.tsx index 24ca2dbd..42d04d58 100644 --- a/frontend/src/Dashboard.tsx +++ b/frontend/src/Dashboard.tsx @@ -1,6 +1,7 @@ import { useEffect, useRef, useState } from 'react'; import { getGoogleMapStore, useGoogleMapStore } from './store/googleMapState'; import { createMarkerInstance } from './marker'; +import NewPlaceSearchBar from './NewPlaceSearchBar'; const Dashboard = () => { const ref = useRef(null); @@ -58,6 +59,7 @@ const Dashboard = () => { return (
+