import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { IonicModule } from '@ionic/angular'; import { EventDetailPageRoutingModule } from './event-detail-routing.module'; import { EventDetailPage } from './event-detail.page'; @NgModule({ imports: [ CommonModule, FormsModule, IonicModule, ReactiveFormsModule, EventDetailPageRoutingModule ], declarations: [EventDetailPage] }) export class EventDetailPageModule {}