(tag, { class: c, ...props }, children = EMPTY_ARR)
| 358 | createVNode(value, EMPTY_OBJ, EMPTY_ARR, TEXT_NODE, node) |
| 359 | |
| 360 | export var h = (tag, { class: c, ...props }, children = EMPTY_ARR) => |
| 361 | createVNode( |
| 362 | tag, |
| 363 | { ...props, ...(c ? { class: createClass(c) } : EMPTY_OBJ) }, |
| 364 | isArray(children) ? children : [children] |
| 365 | ) |
| 366 | |
| 367 | export var app = ({ |
| 368 | node, |
no test coverage detected