I’m using Ionic React for an app, the main pages are using tabs, I’m trying to navigate to the login page using the IonTabButton component, every time I visit the login page I’m unable to return to the home page…
<Route path="/app" render={() => <Tabs />} />
<Route exact path="/login" render={() => <SignIn />} />
The login page is outside the tabs, but since Ionic is keeping the previous page in the dom, this breaks navigation…
Please how can I fix it?