row-pinning

Installation
SKILL.md

This skill builds on core and table-features. Pinning creates row regions; the renderer controls order and sticky layout.

Setup

import { rowPinningFeature, tableFeatures } from '@tanstack/table-core'

type Person = { id: string; name: string }
export const features = tableFeatures({ rowPinningFeature })
export const options = {
  getRowId: (row: Person) => row.id,
  keepPinnedRows: true,
}

Core Patterns

Installs
13
Repository
tanstack/table
GitHub Stars
28.4K
First Seen
Aug 4, 2026
row-pinning — tanstack/table