This commit is contained in:
tiago.kayaya
2021-02-10 11:31:34 +01:00
parent 1409250bab
commit c445a61f59
8 changed files with 108 additions and 15 deletions
@@ -0,0 +1,20 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { ApproveEventPageRoutingModule } from './approve-event-routing.module';
import { ApproveEventPage } from './approve-event.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
ApproveEventPageRoutingModule
],
declarations: [ApproveEventPage]
})
export class ApproveEventPageModule {}