import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { IonicModule } from '@ionic/angular'; import { EventsPageRoutingModule } from './events-routing.module'; import { EventsPage } from './events.page'; @NgModule({ imports: [ CommonModule, FormsModule, IonicModule, EventsPageRoutingModule ], declarations: [EventsPage], schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class EventsPageModule {}