(offscreenProps, mode, renderLanes)
| 20488 | } |
| 20489 | |
| 20490 | function mountWorkInProgressOffscreenFiber(offscreenProps, mode, renderLanes) { |
| 20491 | // The props argument to `createFiberFromOffscreen` is `any` typed, so we use |
| 20492 | // this wrapper function to constrain it. |
| 20493 | return createFiberFromOffscreen(offscreenProps, mode, NoLanes, null); |
| 20494 | } |
| 20495 | |
| 20496 | function updateWorkInProgressOffscreenFiber(current, offscreenProps) { |
| 20497 | // The props argument to `createWorkInProgress` is `any` typed, so we use this |
no test coverage detected
searching dependent graphs…