mirror of
https://github.com/esiur/iui.git
synced 2026-04-04 15:08:21 +00:00
15 lines
329 B
JavaScript
15 lines
329 B
JavaScript
import IUIElement from "../Core/IUIElement.js";
|
|
import { IUI } from "../Core/IUI.js";
|
|
|
|
|
|
export default IUI.module(class TableRow extends IUIElement {
|
|
constructor() {
|
|
super();
|
|
}
|
|
|
|
create() {
|
|
//this.style.display = "none";
|
|
this.style.display = "table-row";
|
|
console.log("TR");
|
|
}
|
|
}); |