18 lines
378 B
TypeScript
18 lines
378 B
TypeScript
import {Component, inject} from '@angular/core';
|
|
import {Router} from "@angular/router";
|
|
|
|
@Component({
|
|
selector: 'app-menu-param',
|
|
imports: [],
|
|
templateUrl: './menu-param.component.html',
|
|
styleUrl: './menu-param.component.css'
|
|
})
|
|
export class MenuParamComponent {
|
|
|
|
private router = inject(Router)
|
|
|
|
openParam() {
|
|
this.router.navigate(['/main/parameters']);
|
|
}
|
|
}
|