이런식으로 작성하면 아래의 에러 메시지를 보게 될 것이다.
// 이전버전
<Route path="/" component={Home} />
// v6
<Route path="/" element={<Home />} />
const navigate = useNavigate()
return(
<button onClick={() =>{navigate(-1)}> GO BACK
</button>
)
👇 더 자세히 알고 싶다면
React Router