import { NgModule } from '@angular/core'; import { IonicPageModule } from 'ionic-angular'; import { MyprofilePage } from './myprofile'; import { TranslateModule } from "@ngx-translate/core"; @NgModule({ declarations: [ MyprofilePage, ], imports: [ IonicPageModule.forChild(MyprofilePage), TranslateModule ], }) export class MyprofilePageModule {}