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,
}