Skip to content
notice.module.ts 278 B
Newer Older
wangqinghua's avatar
wangqinghua committed
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { NoticePage } from './notice';

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