fix(react): IonTabButton will call custom onClick handlers (#25313)

Resolves #22511
This commit is contained in:
Sean Perkins
2022-05-19 12:19:34 -04:00
committed by GitHub
parent 51f3179bcc
commit 6034418b33
7 changed files with 64 additions and 4 deletions

View File

@ -24,6 +24,7 @@ import './theme/variables.css';
import Main from './pages/Main';
import OverlayHooks from './pages/overlay-hooks/OverlayHooks';
import OverlayComponents from './pages/overlay-components/OverlayComponents';
import Tabs from './pages/Tabs';
setupIonicReact();
@ -34,6 +35,7 @@ const App: React.FC = () => (
<Route path="/" component={Main} />
<Route path="/overlay-hooks" component={OverlayHooks} />
<Route path="/overlay-components" component={OverlayComponents} />
<Route path="/tabs" component={Tabs} />
</IonRouterOutlet>
</IonReactRouter>
</IonApp>