Skip to content
my-survey.module.ts 289 B
Newer Older
wangqinghua's avatar
wangqinghua committed
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { MySurveyPage } from './my-survey';

@NgModule({
  declarations: [
    MySurveyPage,
  ],
  imports: [
    IonicPageModule.forChild(MySurveyPage),
  ],
})
export class MySurveyPageModule {}