UNPKG

@1771technologies/lytenyte-pro

Version:

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

8 lines (7 loc) 227 B
import { useEvent } from "@1771technologies/lytenyte-core/internal"; export function useRowById(tree) { const rowById = useEvent((id) => { return tree.rowIdToNode.get(id)?.row ?? null; }); return rowById; }