I have built a react application in which I am trying to route to a particular tab from other screen using ReactJS. I have set route path as below:
<Route path="/Management" component={Management}/>
Here is the list of screens, for the reference.
-Login screen
-Dashboard screen
- Management screen
-first tab
-second tab
-third tab
I want to navigate to third tab of Management screen from Dashboard screen. I have tried this using Link component. But it is navigating to first tab only. I have given following code in dashboard screen component-
<Link to="/Management">Management 3rd tab</Link>
Please help.