17 lines
300 B
TypeScript
17 lines
300 B
TypeScript
import {Component, OnInit} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-group-chat',
|
|
templateUrl: './group-chat.component.html',
|
|
styleUrls: ['./group-chat.component.scss'],
|
|
})
|
|
export class GroupChatComponent implements OnInit {
|
|
|
|
constructor() {
|
|
}
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|