()
| 310 | createEffect(() => { |
| 311 | const win = pip().pipWindow |
| 312 | const resizeCB = () => { |
| 313 | if (!win) return |
| 314 | setPanelWidth(win.innerWidth) |
| 315 | } |
| 316 | if (win) { |
| 317 | win.addEventListener('resize', resizeCB) |
| 318 | resizeCB() |
no outgoing calls
no test coverage detected
searching dependent graphs…