2022-01-19 17:24:11 +01:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
import { Router } from '@angular/router';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-dashboard',
|
|
|
|
templateUrl: './dashboard.component.html',
|
|
|
|
styleUrls: ['./dashboard.component.scss']
|
|
|
|
})
|
|
|
|
export class DashboardComponent implements OnInit {
|
2022-01-20 09:58:12 +01:00
|
|
|
title = 'openvidu-angular';
|
2022-01-19 17:24:11 +01:00
|
|
|
|
|
|
|
constructor(private router: Router) {}
|
|
|
|
|
|
|
|
ngOnInit(): void {}
|
|
|
|
|
|
|
|
goTo(path: string) {
|
|
|
|
this.router.navigate([`/${path}`]);
|
|
|
|
}
|
|
|
|
}
|