MCPcopy Index your code
hub / github.com/krasimir/react-in-patterns / updateForwardRef

Function updateForwardRef

code/new-context-api/public/app.js:9144–9150  ·  view source on GitHub ↗
(current, workInProgress)

Source from the content-addressed store, hash-verified

9142 }
9143
9144 function updateForwardRef(current, workInProgress) {
9145 var render = workInProgress.type.render;
9146 var nextChildren = render(workInProgress.pendingProps, workInProgress.ref);
9147 reconcileChildren(current, workInProgress, nextChildren);
9148 memoizeProps(workInProgress, nextChildren);
9149 return workInProgress.child;
9150 }
9151
9152 function updateFragment(current, workInProgress) {
9153 var nextChildren = workInProgress.pendingProps;

Callers 1

beginWorkFunction · 0.70

Calls 2

reconcileChildrenFunction · 0.70
memoizePropsFunction · 0.70

Tested by

no test coverage detected