travelling to next page by function react js 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: redirect react router stack overflow
<span className="input-group-btn">
<Link to="/login" />Click to login</Link>
</span>