Skip to content

Instantly share code, notes, and snippets.

@geykel
Created May 19, 2017 15:41
Show Gist options
  • Save geykel/89b592e6929ff5dd2ae88377905775a7 to your computer and use it in GitHub Desktop.
Save geykel/89b592e6929ff5dd2ae88377905775a7 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';
import { SignInPage } from '../pages/signin/signin';
import { SignUpPage } from '../pages/signup/signup';
@NgModule({
declarations: [
MyApp,
HomePage,
SignInPage,
SignUpPage
],
imports: [
BrowserModule,
IonicModule.forRoot(MyApp)
],
bootstrap: [IonicApp],
entryComponents: [
MyApp,
HomePage,
SignInPage,
SignUpPage
],
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