import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { IonicModule } from '@ionic/angular'; import { ChatDebuggingPageRoutingModule } from './chat-debugging-routing.module'; import { ChatDebuggingPage } from './chat-debugging.page'; @NgModule({ imports: [ CommonModule, FormsModule, IonicModule, ChatDebuggingPageRoutingModule ], declarations: [ChatDebuggingPage] }) export class ChatDebuggingPageModule {}