import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { Routes, RouterModule } from '@angular/router'; import { IonicModule } from '@ionic/angular'; import { IonicRatingModule } from 'ionic4-rating'; import { ErmChannelPage } from './erm-channel.page'; import { HomeComponent } from './home/home.component'; import { SurveyComponent } from './survey/survey.component'; import { HmgCommonModule } from '../hmg-common/hmg-common.module'; const routes: Routes = [ { path: '', component: ErmChannelPage, children: [ { path: 'home', component: HomeComponent }, { path: 'survey', component: SurveyComponent }, ] } ]; @NgModule({ imports: [ CommonModule, FormsModule, IonicModule, IonicRatingModule, HmgCommonModule, RouterModule.forChild(routes) ], declarations: [ErmChannelPage, HomeComponent, SurveyComponent] }) export class ErmChannelPageModule { }