mapcomplete/UI/Base/FixedUiElement.ts
Tobias c2ee058682 Remove a few empty spaces and line breaks
Most it is done by my editor automatically.
2021-01-17 21:04:37 +01:00

15 lines
278 B
TypeScript

import {UIElement} from "../UIElement";
export class FixedUiElement extends UIElement {
private _html: string;
constructor(html: string) {
super(undefined);
this._html = html ?? "";
}
InnerRender(): string {
return this._html;
}
}