import { Component, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; import { RootPage } from '../pages/root-page/root-page'; @Component({ template: '' }) export class E2EApp { root = RootPage; } @NgModule({ declarations: [ E2EApp, RootPage ], imports: [ BrowserModule, IonicModule.forRoot(E2EApp) ], bootstrap: [IonicApp], entryComponents: [ E2EApp, RootPage ] }) export class AppModule {}