Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

21 Zeilen
458 B

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