mirror of https://github.com/OpenVidu/openvidu.git
16 lines
311 B
TypeScript
16 lines
311 B
TypeScript
![]() |
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-admin-dashboard',
|
||
|
templateUrl: './admin-dashboard.component.html',
|
||
|
styleUrls: ['./admin-dashboard.component.scss']
|
||
|
})
|
||
|
export class AdminDashboardComponent implements OnInit {
|
||
|
|
||
|
constructor() { }
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
}
|
||
|
|
||
|
}
|