(node: HTMLElement)
| 1 | // reading a dimension prop will cause the browser to recalculate, |
| 2 | // which will let our animations work |
| 3 | export default function triggerBrowserReflow(node: HTMLElement): void { |
| 4 | // eslint-disable-next-line @typescript-eslint/no-unused-expressions |
| 5 | node.offsetHeight; |
| 6 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…