react how to redirect to home page code example
Example 1: react redirect to url
import { Route, Redirect } from 'react-router'
<Route exact path="/" render={() => (
loggedIn ? (
<Redirect to="/dashboard"/>
) : (
<PublicHomePage/>
)
)}/>
Example 2: how to redirect to a website in react
window.location.href = 'http://domain.com';