openvidu/openvidu-components-angular/src/app/examples/chatPanel-directive/chatPanel-directive.compone...

13 lines
310 B
TypeScript
Raw Normal View History

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