forked from MapComplete/MapComplete
17 lines
287 B
TypeScript
17 lines
287 B
TypeScript
|
import {UIElement} from "../UIElement";
|
||
|
import {UIEventSource} from "../UIEventSource";
|
||
|
|
||
|
|
||
|
export class CheckBox extends UIElement{
|
||
|
|
||
|
constructor(data: UIEventSource<boolean>) {
|
||
|
super(data);
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
protected InnerRender(): string {
|
||
|
return "";
|
||
|
}
|
||
|
|
||
|
}
|