Newer
Older
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { OutGoingReportPage } from '../outGoingReport/outGoingReport';
@NgModule({
declarations: [
OutGoingReportPage,
],
imports: [
IonicPageModule.forChild(OutGoingReportPage),
],
})
export class OutGoingReportModule {}