mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
22 lines
539 B
TypeScript
22 lines
539 B
TypeScript
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
|
|
],
|
|
exports: [ChatPopoverPage],
|
|
declarations: [ChatPopoverPage]
|
|
})
|
|
export class ChatPopoverPageModule {}
|