redirect react component code example
Example 1: javascript redirect
window.location.href = "http://mywebsite.com/home.html";
Example 2: redirect in react
import React from 'react'
import { Redirect } from 'react-router-dom'
const ProtectedComponent = () => {
if (authFails)
return <Redirect to='/login' />
}
return <div> My Protected Component </div>
}
Example 3: redirect to in react js
<Route exact path="/">
{loggedIn ? <Redirect to="/dashboard" /> : <PublicHomePage />}
</Route>
Example 4: how to use redirect in react
import { useHistory } from "react-router-dom";
function App() {
let history = useHistory();
}
Example 5: react router redirect
<span className="input-group-btn">
<Link to="/login" />Click to login</Link>
</span>