MapComplete/UI/Base/FixedUiElement.ts
2021-06-10 01:36:20 +02:00

15 lines
No EOL
282 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;
}
}