mapcomplete/UI/Base/FixedUiElement.ts
2020-07-20 18:24:00 +02:00

16 lines
279 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;
}
}