add new components for chat in shared

This commit is contained in:
tiago.kayaya
2021-03-04 18:50:26 +01:00
parent f71f732beb
commit 570ccabb26
47 changed files with 2778 additions and 26 deletions
@@ -0,0 +1,24 @@
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';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
SharedModule,
PopoverModule,
GroupMessagesPageRoutingModule
],
declarations: [GroupMessagesPage]
})
export class GroupMessagesPageModule {}