Answers for "how to redirect from function in react js"

50

redirect react js

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

react redirect to url

import { Route, Redirect } from 'react-router'

<Route exact path="/" render={() => (
  loggedIn ? (
    <Redirect to="/dashboard"/>
  ) : (
    <PublicHomePage/>
  )
)}/>
Posted by: Guest on July-20-2020
0

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 to redirect from function in react js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language