| 24 | import { cn } from "@/lib/utils" |
| 25 | |
| 26 | interface Props { |
| 27 | data: PoolInfo[] |
| 28 | duration: Duration |
| 29 | onItemClick: (data: PoolInfo) => void |
| 30 | } |
| 31 | |
| 32 | export default function DataTable({ data, duration, onItemClick }: Props) { |
| 33 | const { tableRef } = useStickyTable() |
nothing calls this directly
no outgoing calls
no test coverage detected