2020-08-18 23:32:12 +01:00
|
|
|
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,
|
2021-06-03 11:31:19 +01:00
|
|
|
EventsPageRoutingModule,
|
2021-08-25 16:02:40 +01:00
|
|
|
//
|
2020-08-18 23:32:12 +01:00
|
|
|
],
|
|
|
|
|
declarations: [EventsPage],
|
|
|
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
|
|
|
})
|
|
|
|
|
export class EventsPageModule {}
|