create an html page in visual studio
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
create an html page in visual studio
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
examples of homepage code vsc
import { IonContent, IonText, IonToolbar, IonHeader, IonPage, IonTitle, IonList, IonItem } from "@ionic/react"
import React from 'react';
const Home: React.FC = () => {
return (
<IonPage>
<IonHeader>
<IonToolbar>
<IonTitle> Hello World </IonTitle>
</IonToolbar>
</IonHeader>
<IonContent className="ion-padding">
<IonList>
<IonItem>
<IonText> hello World</IonText>
</IonItem>
</IonList>
</IonContent>
</IonPage>
);
};
export default Home;
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us