Add minimal checkbox
This commit is contained in:
parent
5c9fb293e9
commit
4abe74fbf1
1 changed files with 17 additions and 0 deletions
17
UI/Base/CheckBox.ts
Normal file
17
UI/Base/CheckBox.ts
Normal 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 "";
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue