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