working on delegar

This commit is contained in:
tiago.kayaya
2021-04-30 12:57:54 +01:00
parent ba29fc2f65
commit 709835e58b
10 changed files with 587 additions and 3 deletions
+24
View File
@@ -0,0 +1,24 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { DelegarPageRoutingModule } from './delegar-routing.module';
import { DelegarPage } from './delegar.page';
import { AttendeeModalPage } from 'src/app/shared/event/attendee-modal/attendee-modal.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
DelegarPageRoutingModule
],
declarations: [
DelegarPage,
AttendeeModalPage,
]
})
export class DelegarPageModule {}