2021-03-24 15:10:46 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { AttendeeModalPageRoutingModule } from './attendee-modal-routing.module';
|
|
|
|
|
|
2021-06-15 15:28:03 +01:00
|
|
|
import { AttendeePage } from './attendee-modal.page';
|
2021-03-24 15:10:46 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
|
|
|
|
AttendeeModalPageRoutingModule
|
|
|
|
|
],
|
2021-06-15 15:28:03 +01:00
|
|
|
declarations: [AttendeePage],
|
|
|
|
|
exports: [AttendeePage]
|
2021-03-24 15:10:46 +01:00
|
|
|
})
|
|
|
|
|
export class AttendeeModalPageModule {}
|