Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created August 10, 2017 16:22
Show Gist options
  • Save amandeepmittal/f45fff4303c11aa0f3c634a0bd1b0be1 to your computer and use it in GitHub Desktop.
Save amandeepmittal/f45fff4303c11aa0f3c634a0bd1b0be1 to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import { ErrorHandler, NgModule } from '@angular/core';
import { IonicApp, IonicErrorHandler, IonicModule } from 'ionic-angular';
import { SplashScreen } from '@ionic-native/splash-screen';
import { StatusBar } from '@ionic-native/status-bar';
import { MyApp } from './app.component';
import { HomePage } from '../pages/home/home';
// new pages to be added in declarations and entryComponents
import { Page1Page } from "../pages/page1/page1";
import { Page2Page } from "../pages/page2/page2";
@NgModule({
declarations: [
MyApp,
HomePage,
Page1Page,
Page2Page
],
imports: [
BrowserModule,
IonicModule.forRoot(MyApp)
],
bootstrap: [IonicApp],
entryComponents: [
MyApp,
HomePage,
Page1Page,
Page2Page
],
providers: [
StatusBar,
SplashScreen,
{provide: ErrorHandler, useClass: IonicErrorHandler}
]
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment