ziko
Version:
a versatile javaScript framework offering a rich set of UI components, advanced mathematical utilities, reactivity, animations, client side routing and graphics capabilities
18 lines • 407 B
JavaScript
import ZikoUIElement from "../../ZikoUIElement";
class ZikoUITextArea extends ZikoUIElement {
constructor() {
super();
this.element = document?.createElement("textarea");
}
get value(){
return this.element.textContent;
}
get isTextArea(){
return true;
}
}
const textarea =()=> new ZikoUITextArea();
export {
ZikoUITextArea,
textarea
}