import { Table } from '@tanstack/react-table'; import CheckboxTristate from '@/components/ui/CheckboxTristate'; interface SelectAllProps { table: Table; } function SelectAll({ table }: SelectAllProps) { return ( table.toggleAllPageRowsSelected(value !== false)} /> ); } export default SelectAll;