Regenerate components

This commit is contained in:
Peter Maquiran
2021-06-03 14:10:16 +01:00
parent f2f45b3d98
commit 014d85b16e
25 changed files with 278 additions and 269 deletions
@@ -0,0 +1,21 @@
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],
exports: [ApproveEventPage]
})
export class ApproveEventPageModule {}