import { Component } from '@angular/core';
@Component({
selector: 'app-journal-maps',
templateUrl: './journal-maps.component.html',
styleUrl: './journal-maps.component.scss',
})
export class JournalMapsComponent {
currentText = 'Initial';
texts: any = {
hans: 'hans',
peter: 'peter',
};
setNewText(key: string) {
this.currentText = this.texts[key];
}
}