Answers for "how can we do redirect to another component in reactjs"

63

redirect react js

window.location.href = "http://mywebsite.com/home.html";
Posted by: Guest on July-18-2019
1

function that redirects to another page react

const navigate = useNavigate();
const goToLoginPage = () => navigate('/login');
Posted by: Guest on October-09-2021

Code answers related to "how can we do redirect to another component in reactjs"

Browse Popular Code Answers by Language