Chat upgraded for dice rolls and system messages
This commit is contained in:
29
src/app/chat/chat.module.ts
Normal file
29
src/app/chat/chat.module.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
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 { }
|
||||
Reference in New Issue
Block a user