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

Function updateForwardRef

code/dependency-injection/public/app.js:9876–9882  ·  view source on GitHub ↗
(current, workInProgress)

Source from the content-addressed store, hash-verified

9874 }
9875
9876 function updateForwardRef(current, workInProgress) {
9877 var render = workInProgress.type.render;
9878 var nextChildren = render(workInProgress.pendingProps, workInProgress.ref);
9879 reconcileChildren(current, workInProgress, nextChildren);
9880 memoizeProps(workInProgress, nextChildren);
9881 return workInProgress.child;
9882 }
9883
9884 function updateFragment(current, workInProgress) {
9885 var nextChildren = workInProgress.pendingProps;

Callers 1

beginWorkFunction · 0.70

Calls 2

reconcileChildrenFunction · 0.70
memoizePropsFunction · 0.70

Tested by

no test coverage detected