0
Q:

redirect react router

window.location.href = "http://mywebsite.com/home.html";
34
<Route exact path="/">
  {loggedIn ? <Redirect to="/profile" /> : <HomePage />}
</Route>
5
<Route exact path="/">
  {loggedIn ? <Redirect to="/dashboard" /> : <PublicHomePage />}
</Route>
3
import { useHistory } from "react-router-dom";

function App() {
  let history = useHistory();
}
0
<Redirect to="/somewhere/else" />
0
<span className="input-group-btn">
  <Link to="/login" />Click to login</Link>
</span>
0

New to Communities?

Join the community