23
loading...
This website collects cookies to deliver better user experience
npm install -g ionic # Update the Ionic CLI
ionic start awesome-app
ionic generate page HomePage
import { HomePage } from '../pages/home/home';
@NgModule({
declarations: [
MyApp,
HomePage
],
imports: [
BrowserModule,
IonicModule.forRoot(MyApp)
],
bootstrap: [IonicApp],
entryComponents: [
MyApp,
HomePage
],
providers: [
/* .... */
]
})
export class AppModule {}