mirror of
https://github.com/esiur/iui.git
synced 2026-04-04 06:58:22 +00:00
initial commit
This commit is contained in:
15
src/Data/TableRow.js
Normal file
15
src/Data/TableRow.js
Normal file
@@ -0,0 +1,15 @@
|
||||
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");
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user