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'; import { ChatPopoverPage } from '../../popover/chat-popover/chat-popover.page'; @NgModule({ imports: [ CommonModule, FormsModule, IonicModule, ViewEventPageRoutingModule ], declarations: [ViewEventPage], exports: [ViewEventPage] }) export class ViewEventPageModule {}