MCPcopy Create free account
hub / github.com/krasimir/react-in-patterns / updateForwardRef

Function updateForwardRef

code/event-handlers/public/app.js:9113–9119  ·  view source on GitHub ↗
(current, workInProgress)

Source from the content-addressed store, hash-verified

9111 }
9112
9113 function updateForwardRef(current, workInProgress) {
9114 var render = workInProgress.type.render;
9115 var nextChildren = render(workInProgress.pendingProps, workInProgress.ref);
9116 reconcileChildren(current, workInProgress, nextChildren);
9117 memoizeProps(workInProgress, nextChildren);
9118 return workInProgress.child;
9119 }
9120
9121 function updateFragment(current, workInProgress) {
9122 var nextChildren = workInProgress.pendingProps;

Callers 1

beginWorkFunction · 0.70

Calls 2

reconcileChildrenFunction · 0.70
memoizePropsFunction · 0.70

Tested by

no test coverage detected