This commit is contained in:
tiago.kayaya
2020-12-28 10:11:00 +01:00
parent eabccde7a2
commit 6fe09821e4
25 changed files with 445 additions and 12 deletions
@@ -0,0 +1,20 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { ChatPopoverPageRoutingModule } from './chat-popover-routing.module';
import { ChatPopoverPage } from './chat-popover.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
ChatPopoverPageRoutingModule
],
declarations: [ChatPopoverPage]
})
export class ChatPopoverPageModule {}