UNPKG

zextra

Version:

zikojs extra components

18 lines (13 loc) 301 B
import { UIElement } from "ziko" class ZikoUIList extends UIElement{ constructor({ type = 'ol' } = {}, ...items){ super(type) } sort(){ } filter(){ } } const List = ({ type = 'ol'} = {}, ...items) => { return new ZikoUIList(...items) }