04. Navigation
ํ์ต ํค์๋
history.pushState()
function Logout() {
useEffect(() => {
// logout ๋ก์ง ๊ตฌํ
}, [])
return <Navigate to="/" element={<HomePage />}>
}const navigate = useNavigation();
...
<button type="button" onClick={() => navigate("/");}> logout </button>Last updated