import type { RowData } from '@tanstack/react-table' export function defaultGetId(row: TData): string | null | undefined { const id = (row as { id?: unknown }).id return typeof id === 'string' ? id : null }