2021-03-04 18:50:26 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { GroupMessagesPageRoutingModule } from './group-messages-routing.module';
|
|
|
|
|
|
|
|
|
|
import { GroupMessagesPage } from './group-messages.page';
|
|
|
|
|
import { SharedModule } from 'src/app/shared/shared.module';
|
|
|
|
|
import { PopoverModule } from 'src/app/shared/popover/chat-popover/popover.modules';
|
2021-06-02 10:26:32 +01:00
|
|
|
import { ComponentsModule } from 'src/app/components/components.module';
|
2021-03-04 18:50:26 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-06-02 10:26:32 +01:00
|
|
|
ComponentsModule,
|
2021-03-04 18:50:26 +01:00
|
|
|
PopoverModule,
|
|
|
|
|
GroupMessagesPageRoutingModule
|
|
|
|
|
],
|
|
|
|
|
declarations: [GroupMessagesPage]
|
|
|
|
|
})
|
|
|
|
|
export class GroupMessagesPageModule {}
|