24 lines
428 B
TypeScript
24 lines
428 B
TypeScript
// 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);
|