UNPKG

@1771technologies/lytenyte-pro

Version:

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

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