Add new statistics view

This commit is contained in:
Pieter Vander Vennet 2022-08-22 13:34:47 +02:00
parent 6f6a5d7092
commit 716fda39aa
10 changed files with 342 additions and 171 deletions

View file

@ -9,8 +9,8 @@ export default abstract class BaseUIElement {
protected _constructedHtmlElement: HTMLElement;
protected isDestroyed = false;
private readonly clss: Set<string> = new Set<string>();
private style: string;
protected readonly clss: Set<string> = new Set<string>();
protected style: string;
private _onClick: () => void;
public onClick(f: (() => void)) {