Files
doneit-web/src/app/pages/chat/chat.module.ts
T

24 lines
599 B
TypeScript
Raw Normal View History

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';
import { SharedModule } from 'src/app/shared/shared.module';
2020-09-10 09:48:37 +01:00
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
SharedModule,
ChatPageRoutingModule,
2020-09-10 09:48:37 +01:00
],
declarations: [ChatPage],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
2020-09-10 09:48:37 +01:00
})
export class ChatPageModule {}