MCPcopy Create free account
hub / github.com/Lobos/react-ui / queueChild

Function queueChild

docs/lib/react.js:1431–1437  ·  view source on GitHub ↗
(parentTree, childTree)

Source from the content-addressed store, hash-verified

1429}
1430
1431function queueChild(parentTree, childTree) {
1432 if (enableLazy) {
1433 parentTree.children.push(childTree);
1434 } else {
1435 parentTree.node.appendChild(childTree.node);
1436 }
1437}
1438
1439function queueHTML(tree, html) {
1440 if (enableLazy) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…