import {UIElement} from "../UIElement"; import {UIEventSource} from "../UIEventSource"; import { FilteredLayer } from "../../Logic/FilteredLayer"; export class CheckBox extends UIElement{ constructor(data: UIEventSource, name: String) { super(data); this.data = data; this.name = name } protected InnerRender(): string { return `${this.data.data? `

${this.name}

`: `

${this.name}

`}`; } }