Answers for "react history redirect"

50

redirect react js

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

redirect to in react js

<Route exact path="/">
  {loggedIn ? <Redirect to="/dashboard" /> : <PublicHomePage />}
</Route>
Posted by: Guest on November-15-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language