versie 1.3.0 - the 'feel' update

This commit is contained in:
Mel M. van Veen
2024-12-03 13:57:29 +01:00
parent 83ce734c82
commit f34ca26cdd
21 changed files with 368 additions and 158 deletions

View File

@@ -0,0 +1,17 @@
import {Component, OnInit} from '@angular/core';
@Component({
selector: 'app-current-score',
imports: [],
templateUrl: './current-score.component.html',
styleUrl: './current-score.component.css'
})
export class CurrentScoreComponent implements OnInit{
round: string;
ngOnInit(): void {
this.round = localStorage.getItem('question')[0]
}
protected readonly localStorage = localStorage;
}