Newer
Older
import { Component } from '@angular/core';
import { UnitService } from '../../services/unit.service';
templateUrl: './toolbar.component.html',
styles: [
'mat-toolbar {background-color: #696969}',
'mat-toolbar button {margin: 15px}'
]
})
export class ToolbarComponent {
constructor(private unitService: UnitService) { }
save(): void {
this.unitService.saveUnit();
}
async load(): Promise<void> {
await this.unitService.loadUnitFromFile();