import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-chat-window', templateUrl: './chat-window.component.html', styleUrls: ['./chat-window.component.scss'] }) export class ChatWindowComponent implements OnInit { constructor() { } ngOnInit(): void { } }