function useLegacyTable<TData>(options): LegacyReactTable<TData>;Defined in: useLegacyTable.ts:391
TData extends RowData
LegacyTableOptions\<`TData`\>
Legacy v8-style table options
LegacyReactTable\<`TData`\>
A table instance with the full state subscribed and a getState() method
This hook is provided as a compatibility layer for migrating from TanStack Table v8.
Use the new useTable hook instead with an explicit features option:
// New v9 API
const features = tableFeatures({
columnFilteringFeature,
rowSortingFeature,
rowPaginationFeature,
filteredRowModel: createFilteredRowModel(),
sortedRowModel: createSortedRowModel(),
paginatedRowModel: createPaginatedRowModel(),
filterFns,
sortFns,
})
const table = useTable({
features,
columns,
data,
})Key differences from v8: