16 lines
No EOL
283 B
TypeScript
16 lines
No EOL
283 B
TypeScript
import {UIElement} from "../UIElement";
|
|
|
|
export class FixedUiElement extends UIElement {
|
|
private _html: string;
|
|
|
|
constructor(html: string) {
|
|
super(undefined);
|
|
this._html = html;
|
|
}
|
|
|
|
protected InnerRender(): string {
|
|
return this._html;
|
|
}
|
|
|
|
|
|
} |