| 1 | import { useMemo } from "react"; |
| 2 | |
| 3 | interface PerfGridProps { |
| 4 | rowCount: number; |
| 5 | columnCount: number; |
| 6 | } |
| 7 | |
| 8 | const PerfCell = ({ row, column }: { row: number; column: number }) => { |
| 9 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…