init commit,
This commit is contained in:
23
03_source/mobile_notworking.del/src/pages/events/index.tsx
Normal file
23
03_source/mobile_notworking.del/src/pages/events/index.tsx
Normal 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);
|
Reference in New Issue
Block a user