2020-08-25 14:08:13 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { AttendeesPageRoutingModule } from './attendees-routing.module';
|
|
|
|
|
|
2021-06-15 15:28:03 +01:00
|
|
|
import { AttendeesPageModal } from './attendees.page';
|
2020-08-25 14:08:13 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
|
|
|
|
AttendeesPageRoutingModule
|
|
|
|
|
],
|
2021-06-15 15:28:03 +01:00
|
|
|
declarations: [AttendeesPageModal],
|
|
|
|
|
exports: [AttendeesPageModal]
|
2020-08-25 14:08:13 +01:00
|
|
|
})
|
|
|
|
|
export class AttendeesPageModule {}
|