mirror of https://github.com/OpenVidu/openvidu.git
16 lines
287 B
TypeScript
16 lines
287 B
TypeScript
![]() |
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-chat-test',
|
||
|
templateUrl: './chat-test.component.html',
|
||
|
styleUrls: ['./chat-test.component.scss']
|
||
|
})
|
||
|
export class ChatTestComponent implements OnInit {
|
||
|
|
||
|
constructor() { }
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
}
|
||
|
|
||
|
}
|