2021-01-29 09:45:27 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { ViewEventPageRoutingModule } from './view-event-routing.module';
|
|
|
|
|
|
|
|
|
|
import { ViewEventPage } from './view-event.page';
|
|
|
|
|
import { SharedModule } from 'src/app/shared/shared.module';
|
2021-07-28 09:29:14 +01:00
|
|
|
|
2021-06-10 15:38:08 +01:00
|
|
|
import { BtnModalDismissPageModule } from 'src/app/shared/btn-modal-dismiss/btn-modal-dismiss.module';
|
2021-01-29 09:45:27 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-07-28 09:29:14 +01:00
|
|
|
|
2021-06-10 15:38:08 +01:00
|
|
|
ViewEventPageRoutingModule,
|
|
|
|
|
BtnModalDismissPageModule,
|
2021-01-29 09:45:27 +01:00
|
|
|
],
|
|
|
|
|
declarations: [ViewEventPage]
|
|
|
|
|
})
|
|
|
|
|
export class ViewEventPageModule {}
|