This commit is contained in:
tiago.kayaya
2021-06-17 12:24:31 +01:00
parent ba8abd077e
commit e0e6c35678
15 changed files with 693 additions and 161 deletions
+22
View File
@@ -0,0 +1,22 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { ForwardPageRoutingModule } from './forward-routing.module';
import { ForwardPage } from './forward.page';
import { AttendeeModalPageModule } from 'src/app/shared/event/attendee-modal/attendee-modal.module';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
ForwardPageRoutingModule,
AttendeeModalPageModule
],
declarations: [ForwardPage]
})
export class ForwardPageModule {}