export function createElement(tag: string, attrs: Record = {}, ...children: any[]) { return { tag, attrs, children, }; }