openvidu/openvidu-components-angular/src/app/examples/panel-directive/panel-directive.component.ts

13 lines
298 B
TypeScript
Raw Normal View History

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-panel-directive',
template: ` <p>toolbar-directive works!</p> `,
styleUrls: ['./panel-directive.component.scss']
})
export class PanelDirectiveComponent implements OnInit {
constructor() {}
ngOnInit(): void {}
}