openvidu/openvidu-components-angular/src/app/examples/participantsPanel-directive/participantsPanel-directive...

13 lines
344 B
TypeScript
Raw Normal View History

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