mirror of https://github.com/OpenVidu/openvidu.git
14 lines
288 B
TypeScript
14 lines
288 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
templateUrl: './app.component.html',
|
|
styleUrls: ['./app.component.scss']
|
|
})
|
|
export class AppComponent implements OnInit {
|
|
title = 'openvidu-components-angular';
|
|
constructor() {}
|
|
|
|
ngOnInit() {}
|
|
}
|