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

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

}