2020-12-28 10:11:00 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
2021-03-12 11:56:54 +01:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
2020-12-28 10:11:00 +01:00
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { GroupMessagesPageRoutingModule } from './group-messages-routing.module';
|
|
|
|
|
|
|
|
|
|
import { GroupMessagesPage } from './group-messages.page';
|
2021-06-02 10:26:32 +01:00
|
|
|
import { ComponentsModule } from 'src/app/components/components.module';
|
2021-06-03 10:41:25 +01:00
|
|
|
import { ChatPopoverPageModule } from 'src/app/shared/popover/chat-popover/chat-popover.module';
|
2020-12-28 10:11:00 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
2021-03-12 11:56:54 +01:00
|
|
|
BrowserModule,
|
2020-12-28 10:11:00 +01:00
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-06-02 10:26:32 +01:00
|
|
|
ComponentsModule,
|
2021-06-03 14:11:34 +01:00
|
|
|
GroupMessagesPageRoutingModule,
|
2021-06-03 10:41:25 +01:00
|
|
|
ChatPopoverPageModule,
|
2020-12-28 10:11:00 +01:00
|
|
|
],
|
|
|
|
|
declarations: [GroupMessagesPage]
|
|
|
|
|
})
|
|
|
|
|
export class GroupMessagesPageModule {}
|