This commit is contained in:
CHIEFSOFT\ameye
2024-01-06 11:19:31 -05:00
parent 549cd00af7
commit 29e15425fe
10 changed files with 109 additions and 7 deletions
+5 -2
View File
@@ -1,4 +1,5 @@
import { Component, OnInit } from '@angular/core';
import {Router} from "@angular/router";
@Component({
selector: 'app-dash',
@@ -7,9 +8,11 @@ import { Component, OnInit } from '@angular/core';
})
export class DashPage implements OnInit {
constructor() { }
constructor(private router: Router) { }
ngOnInit() {
}
openSettings(){
this.router.navigate(['settings']);
}
}