mirror of https://github.com/OpenVidu/openvidu.git
13 lines
344 B
TypeScript
13 lines
344 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-participantsPanel-directive',
|
|
template: ` <p>participantsPanel-directive works!</p> `,
|
|
styleUrls: ['./participantsPanel-directive.component.scss']
|
|
})
|
|
export class ParticipantsPanelDirectiveComponent implements OnInit {
|
|
constructor() {}
|
|
|
|
ngOnInit(): void {}
|
|
}
|