MCPcopy Create free account
hub / github.com/caseywebdev/react-list / mountSuspensePrimaryChildren

Function mountSuspensePrimaryChildren

docs/index.js:9832–9839  ·  view source on GitHub ↗
(workInProgress, primaryChildren)

Source from the content-addressed store, hash-verified

9830 return renderLanes;
9831}
9832function mountSuspensePrimaryChildren(workInProgress, primaryChildren) {
9833 primaryChildren = mountWorkInProgressOffscreenFiber(
9834 { mode: "visible", children: primaryChildren },
9835 workInProgress.mode
9836 );
9837 primaryChildren.return = workInProgress;
9838 return (workInProgress.child = primaryChildren);
9839}
9840function mountWorkInProgressOffscreenFiber(offscreenProps, mode) {
9841 return createFiberFromOffscreen(offscreenProps, mode, 0, null);
9842}

Callers 2

updateSuspenseComponentFunction · 0.85

Calls 1

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…