init commit,

This commit is contained in:
louiscklaw
2025-05-28 09:55:51 +08:00
commit efe70ceb69
8042 changed files with 951668 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
// REQ0041/home_discover_event_tab
import { IonContent, IonPage } from '@ionic/react';
import React from 'react';
import './style.scss';
import PageOne from './PageOne';
interface AboutProps {}
const Events: React.FC<AboutProps> = () => {
return (
<>
<IonPage id="events-page">
<IonContent>
<PageOne />
</IonContent>
</IonPage>
</>
);
};
export default React.memo(Events);