Skip to content
stuff-detail.module.ts 304 B
Newer Older
wangqinghua's avatar
wangqinghua committed
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { StuffDetailPage } from './stuff-detail';

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