UNPKG

ziko

Version:

A versatile JavaScript library offering a rich set of Hyperscript Based UI components, advanced mathematical utilities, interactivity ,animations, client side routing and more ...

13 lines (12 loc) 296 B
import { UIElement } from "../constructors/UIElement.js"; class UIView extends UIElement{ constructor(...items){ super({element : 'div', name : 'view'}) this.append(...items) } } const View = (...items) => new UIView(...items); export{ View, UIView }