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

Function updateForwardRef

code/composition/public/app.js:9921–9927  ·  view source on GitHub ↗
(current, workInProgress)

Source from the content-addressed store, hash-verified

9919 }
9920
9921 function updateForwardRef(current, workInProgress) {
9922 var render = workInProgress.type.render;
9923 var nextChildren = render(workInProgress.pendingProps, workInProgress.ref);
9924 reconcileChildren(current, workInProgress, nextChildren);
9925 memoizeProps(workInProgress, nextChildren);
9926 return workInProgress.child;
9927 }
9928
9929 function updateFragment(current, workInProgress) {
9930 var nextChildren = workInProgress.pendingProps;

Callers 1

beginWorkFunction · 0.70

Calls 2

reconcileChildrenFunction · 0.70
memoizePropsFunction · 0.70

Tested by

no test coverage detected