2020-08-18 23:32:12 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
2020-09-01 20:37:47 +01:00
|
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
2020-08-18 23:32:12 +01:00
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { EventDetailPageRoutingModule } from './event-detail-routing.module';
|
|
|
|
|
|
|
|
|
|
import { EventDetailPage } from './event-detail.page';
|
|
|
|
|
|
2020-09-01 20:37:47 +01:00
|
|
|
|
2020-08-18 23:32:12 +01:00
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2020-09-01 20:37:47 +01:00
|
|
|
ReactiveFormsModule,
|
2020-08-18 23:32:12 +01:00
|
|
|
EventDetailPageRoutingModule
|
|
|
|
|
],
|
|
|
|
|
declarations: [EventDetailPage]
|
|
|
|
|
})
|
|
|
|
|
export class EventDetailPageModule {}
|