안형욱

feat: 검색시 Search 페이지 이동

...@@ -55,14 +55,14 @@ const Input = ({ ...@@ -55,14 +55,14 @@ const Input = ({
55 return; 55 return;
56 } 56 }
57 const params = new URLSearchParams({ query }); 57 const params = new URLSearchParams({ query });
58 - history.push(`?${params.toString()}`); 58 + history.push(`search?${params.toString()}`);
59 } 59 }
60 }} 60 }}
61 /> 61 />
62 <SearchIconWrap 62 <SearchIconWrap
63 onClick={() => { 63 onClick={() => {
64 const params = new URLSearchParams({ query }); 64 const params = new URLSearchParams({ query });
65 - history.push(`?${params.toString()}`); 65 + history.push(`search?${params.toString()}`);
66 }} 66 }}
67 > 67 >
68 <SearchBox color="blue" size="50px" display={display} /> 68 <SearchBox color="blue" size="50px" display={display} />
......