update demo-react-switch-tabs,

This commit is contained in:
louiscklaw
2025-06-08 19:07:48 +08:00
parent 766720e075
commit e2076fe67b
15 changed files with 354 additions and 5 deletions

View File

@@ -0,0 +1,25 @@
import { IonContent, IonHeader, IonPage, IonTitle, IonToolbar } from '@ionic/react';
import ExploreContainer from '../components/ExploreContainer';
import './Tab2.css';
const Tab2 = (): React.JSX.Element => {
return (
<IonPage>
<IonHeader>
<IonToolbar>
<IonTitle>Profile</IonTitle>
</IonToolbar>
</IonHeader>
<IonContent fullscreen>
<IonHeader collapse="condense">
<IonToolbar>
<IonTitle size="large">Profile</IonTitle>
</IonToolbar>
</IonHeader>
<ExploreContainer name="Profile page" />
</IonContent>
</IonPage>
);
};
export default Tab2;