What problem does it solve? Building feature-rich data tables in React requires reimplementing sorting, filtering, pagination, grouping, and selection logic from scratch, which is error-prone and hard to maintain. ## Core Features & Use Cases - Headless Table Logic: Provides sorting, filtering, pagination, grouping, expanding, column pinning, resizing, visibility, and row selection without imposing any markup or styles. - Server-Side Operations: Supports manual sorting, filtering, and pagination modes for large datasets fetched from APIs. - TypeScript-Safe Columns: Uses createColumnHelper and module augmentation for typed column definitions, custom filter functions, and table metadata. - Use Case: A developer building an admin dashboard needs a paginated, sortable, filterable user list with row selection and column resizing; this Skill provides the complete implementation patterns. ## Quick Start Ask the AI to create a React table using TanStack Table with sorting, pagination, and a global search filter for your dataset.