2020-12-16 15:07:28 +01:00
|
|
|
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
2020-09-10 09:48:37 +01:00
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { ChatPageRoutingModule } from './chat-routing.module';
|
|
|
|
|
|
|
|
|
|
import { ChatPage } from './chat.page';
|
2020-12-16 15:07:28 +01:00
|
|
|
import { SharedModule } from 'src/app/shared/shared.module';
|
2020-09-10 09:48:37 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2020-12-16 15:07:28 +01:00
|
|
|
SharedModule,
|
|
|
|
|
ChatPageRoutingModule,
|
2020-09-10 09:48:37 +01:00
|
|
|
],
|
2020-12-16 15:07:28 +01:00
|
|
|
declarations: [ChatPage],
|
|
|
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
2020-09-10 09:48:37 +01:00
|
|
|
})
|
|
|
|
|
export class ChatPageModule {}
|