(callback, deps)
| 239 | } |
| 240 | |
| 241 | function useEffect(callback, deps) { |
| 242 | const effectHook = { |
| 243 | callback, |
| 244 | deps, |
| 245 | cleanup: undefined, |
| 246 | }; |
| 247 | wipFiber.effectHooks.push(effectHook); |
| 248 | } |
| 249 | |
| 250 | function commitRoot() { |
| 251 | deletions.forEach(commitWork) |
no outgoing calls
no test coverage detected