Well, since that wouldn’t work easily, this JS might be a starting point for wrapping h
?
const wrappedH = (tag, props) => {
const {children, ...restProps} = props ?? {};
const childArray = Array.isArray(children) ? children : [children]
return h(tag, restProps, ...childArray)
};