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';
|
2021-06-02 16:36:50 +01:00
|
|
|
// import { SharedModule } from 'src/app/shared/shared.module';
|
2021-06-02 10:26:32 +01:00
|
|
|
import { ComponentsModule } from 'src/app/components/components.module';
|
2021-06-03 11:31:19 +01:00
|
|
|
import { HeaderNoSearchPageModule } from 'src/app/shared/headers/header-no-search/header-no-search.module';
|
2020-08-18 23:32:12 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-06-02 10:26:32 +01:00
|
|
|
ComponentsModule,
|
2021-06-03 11:31:19 +01:00
|
|
|
EventsPageRoutingModule,
|
|
|
|
|
HeaderNoSearchPageModule,
|
2020-08-18 23:32:12 +01:00
|
|
|
],
|
|
|
|
|
declarations: [EventsPage],
|
|
|
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
|
|
|
})
|
|
|
|
|
export class EventsPageModule {}
|