()
| 59 | |
| 60 | // Always yield at the end of the frame. |
| 61 | export function unstable_shouldYield(): boolean { |
| 62 | return getCurrentTime() >= deadline; |
| 63 | } |
| 64 | |
| 65 | export function unstable_requestPaint() { |
| 66 | // Since we yield every frame regardless, `requestPaint` has no effect. |
nothing calls this directly
no test coverage detected