mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
24 lines
599 B
TypeScript
24 lines
599 B
TypeScript
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
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';
|
|
import { SharedModule } from 'src/app/shared/shared.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
SharedModule,
|
|
ChatPageRoutingModule,
|
|
],
|
|
declarations: [ChatPage],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class ChatPageModule {}
|