()
| 7280 | thenableState = null; |
| 7281 | } |
| 7282 | function mountWorkInProgressHook() { |
| 7283 | var hook = { |
| 7284 | memoizedState: null, |
| 7285 | baseState: null, |
| 7286 | baseQueue: null, |
| 7287 | queue: null, |
| 7288 | next: null |
| 7289 | }; |
| 7290 | null === workInProgressHook |
| 7291 | ? (currentlyRenderingFiber$1.memoizedState = workInProgressHook = hook) |
| 7292 | : (workInProgressHook = workInProgressHook.next = hook); |
| 7293 | return workInProgressHook; |
| 7294 | } |
| 7295 | function updateWorkInProgressHook() { |
| 7296 | if (null === currentHook) { |
| 7297 | var nextCurrentHook = currentlyRenderingFiber$1.alternate; |
no outgoing calls
no test coverage detected
searching dependent graphs…