2021-02-24 09:14:58 +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-04-28 11:06:55 +01:00
|
|
|
import { ChatPopoverPage } from '../../popover/chat-popover/chat-popover.page';
|
2021-07-28 09:29:14 +01:00
|
|
|
|
2021-02-24 09:14:58 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
|
|
|
|
ViewEventPageRoutingModule
|
|
|
|
|
],
|
2021-06-03 11:13:50 +01:00
|
|
|
declarations: [ViewEventPage],
|
2021-06-03 11:00:58 +01:00
|
|
|
exports: [ViewEventPage]
|
2021-02-24 09:14:58 +01:00
|
|
|
})
|
|
|
|
|
export class ViewEventPageModule {}
|