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