chat.module.ts 456 B

123456789101112131415161718
  1. import { IonicModule } from '@ionic/angular';
  2. import { NgModule } from '@angular/core';
  3. import { CommonModule } from '@angular/common';
  4. import { FormsModule } from '@angular/forms';
  5. import { ChatPage } from './chat.page';
  6. import { ChatPageRoutingModule } from './chat-routing.module';
  7. @NgModule({
  8. imports: [
  9. IonicModule,
  10. CommonModule,
  11. FormsModule,
  12. ChatPageRoutingModule
  13. ],
  14. declarations: [ChatPage]
  15. })
  16. export class ChatPageModule {}