MCPcopy Create free account
hub / github.com/BetaSu/big-react / updateOffscreenComponent

Function updateOffscreenComponent

packages/react-reconciler/src/beginWork.ts:294–299  ·  view source on GitHub ↗
(workInProgress: FiberNode)

Source from the content-addressed store, hash-verified

292}
293
294function updateOffscreenComponent(workInProgress: FiberNode) {
295 const nextProps = workInProgress.pendingProps;
296 const nextChildren = nextProps.children;
297 reconcileChildren(workInProgress, nextChildren);
298 return workInProgress.child;
299}
300
301function updateSuspenseComponent(workInProgress: FiberNode) {
302 const current = workInProgress.alternate;

Callers 1

beginWorkFunction · 0.85

Calls 1

reconcileChildrenFunction · 0.85

Tested by

no test coverage detected