test(react): add react e2e app

This commit is contained in:
Ely Lucas
2021-10-12 15:10:03 -06:00
committed by GitHub
parent 4075ea6941
commit ea34e50430
78 changed files with 65859 additions and 18670 deletions

View File

@ -0,0 +1,40 @@
import React from 'react';
import {
IonContent,
IonHeader,
IonLabel,
IonPage,
IonTitle,
IonToolbar,
IonItem,
IonList
} from '@ionic/react';
interface MainProps {}
const Main: React.FC<MainProps> = () => {
return (
<IonPage>
<IonHeader>
<IonToolbar>
<IonTitle>Ionic React Test App</IonTitle>
</IonToolbar>
</IonHeader>
<IonContent>
<IonList>
<IonItem routerLink="/overlay-hooks">
<IonLabel>Overlay Hooks</IonLabel>
</IonItem>
</IonList>
<IonList>
<IonItem routerLink="/overlay-components">
<IonLabel>Overlay Components</IonLabel>
</IonItem>
</IonList>
</IonContent>
</IonPage>
);
};
export default Main;