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