I understand in react to route to another view, we can use something like below
<li><Link to={'/'} className="nav-link"> Home </Link></li>
But i would like to route to another route in a js method.
Please let me know if its possible.
I understand in react to route to another view, we can use something like below
<li><Link to={'/'} className="nav-link"> Home </Link></li>
But i would like to route to another route in a js method.
Please let me know if its possible.
You can use history props if you want to go to Home page this.props.history.push("/") U need to call this inside class component for function props.history.push("/")