2021-01-18 14:59:09 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
2021-01-29 09:45:27 +01:00
|
|
|
import { EditEventPageRoutingModule } from './edit-event-routing.module';
|
2021-01-18 14:59:09 +01:00
|
|
|
|
2021-01-29 09:45:27 +01:00
|
|
|
import { EditEventPage } from './edit-event.page';
|
2021-04-06 11:28:46 +01:00
|
|
|
import { AttendeeModalPage } from 'src/app/shared/event/attendee-modal/attendee-modal.page';
|
2021-01-18 14:59:09 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-01-29 09:45:27 +01:00
|
|
|
EditEventPageRoutingModule
|
2021-01-18 14:59:09 +01:00
|
|
|
],
|
2021-04-06 11:28:46 +01:00
|
|
|
declarations: [
|
|
|
|
|
EditEventPage,
|
|
|
|
|
AttendeeModalPage
|
|
|
|
|
]
|
2021-01-18 14:59:09 +01:00
|
|
|
})
|
2021-01-29 09:45:27 +01:00
|
|
|
export class EditEventPageModule {}
|