UNPKG

@1771technologies/lytenyte-pro

Version:

Blazingly fast headless React data grid with 100s of features.

8 lines (7 loc) 267 B
import { useEvent } from "@1771technologies/lytenyte-core/internal"; export function useRowIndexToRowId(source) { const rowIndexToRowId = useEvent((index) => { return source.flat.rowIndexToRow.get(index)?.id ?? null; }); return rowIndexToRowId; }