(e: Event)
| 78 | } |
| 79 | |
| 80 | function onTableScroll(e: Event) { |
| 81 | if (!fixedHeaderRef.current) return |
| 82 | fixedHeaderRef.current.scrollLeft = |
| 83 | tableRef.current?.parentElement?.scrollLeft ?? 0 |
| 84 | } |
| 85 | |
| 86 | useEffect(() => { |
| 87 | if (!tableRef.current) return |
nothing calls this directly
no outgoing calls
no test coverage detected