useNavigate Hook ( React-Router-Dom)
import { useNavigate } from "react-router-dom"
// rest of code const navigate = useNavigate()
//rest of codeconst clickHandler = () => {
// rest of code
navigate("/home")
}Last updated
import { useNavigate } from "react-router-dom"
// rest of code const navigate = useNavigate()
//rest of codeconst clickHandler = () => {
// rest of code
navigate("/home")
}Last updated
<button onClick={clickHandler}>Redirect to route home</button>