openvidu/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/panel.component.ts

16 lines
270 B
TypeScript
Raw Normal View History

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 {
}
}