import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; import { AppComponent } from './app.component'; import { RootPageModule } from '../pages/root-page/root-page.module'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, IonicModule.forRoot(AppComponent), RootPageModule ], bootstrap: [IonicApp], }) export class AppModule {}