import { NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../src'; import { PageTwo } from './page-two'; @NgModule({ declarations: [ PageTwo, ], imports: [ IonicPageModule.forChild(PageTwo), ], entryComponents: [ PageTwo, ] }) export class PageTwoModule {}