경로 변경
http://localhost:3000/search/제주도 => http://localhost:3000/search/한라산
redirect 없이 페이지의 경로 바꾸기
if (state !== false) {
return <Redirect to={{
pathname: `/search/${search}`,
state: { id: search },
}} />;
}
현재 홈페이지에서 다음의 과정을 거쳐 search page로 이동하게 설정되어있습니다.