Add minimal checkbox

This commit is contained in:
Pieter Vander Vennet 2020-07-20 13:30:58 +02:00
parent 5c9fb293e9
commit 4abe74fbf1

17
UI/Base/CheckBox.ts Normal file
View file

@ -0,0 +1,17 @@
import {UIElement} from "../UIElement";
import {UIEventSource} from "../UIEventSource";
export class CheckBox extends UIElement{
constructor(data: UIEventSource<boolean>) {
super(data);
}
protected InnerRender(): string {
return "";
}
}