tanstack-table
Installation
SKILL.md
TanStack Table v8 Best Practices
Core Concepts
TanStack Table is headless — it provides table logic and state, not UI. You bring your own markup and styling. This means full control over rendering with zero style conflicts.
Basic Setup
import { useReactTable, getCoreRowModel, flexRender } from "@tanstack/react-table";
function UsersTable({ data }: { data: User[] }) {
const table = useReactTable({
data,
columns,
getCoreRowModel: getCoreRowModel(),
});