30 lines
744 B
TypeScript
30 lines
744 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { CommonModule } from '@angular/common';
|
||
|
|
|
||
|
|
import { MatCardModule } from '@angular/material/card';
|
||
|
|
import { MatInputModule } from '@angular/material/input';
|
||
|
|
|
||
|
|
import { ChatComponent } from './chat.component';
|
||
|
|
import { SystemMessageComponent } from './entry/system-message/system-message.component';
|
||
|
|
import { MessagesComponent } from './entry/messages/messages.component';
|
||
|
|
import { InputComponent } from './input/input.component';
|
||
|
|
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
declarations: [
|
||
|
|
ChatComponent,
|
||
|
|
InputComponent,
|
||
|
|
MessagesComponent,
|
||
|
|
SystemMessageComponent
|
||
|
|
],
|
||
|
|
exports: [
|
||
|
|
ChatComponent,
|
||
|
|
],
|
||
|
|
imports: [
|
||
|
|
CommonModule,
|
||
|
|
MatCardModule,
|
||
|
|
MatInputModule
|
||
|
|
]
|
||
|
|
})
|
||
|
|
export class ChatModule { }
|