@hitachivantara/uikit-react-lab
Version:
Contributed React components to UI Kit by the community.
11 lines (10 loc) • 337 B
JavaScript
import { useNodeId } from "./useNodeId.js";
import { useNodeMetaRegistry } from "../FlowContext/NodeMetaContext.js";
//#region src/Flow/hooks/useFlowNodeMeta.ts
function useFlowNodeMeta(id) {
const nodeId = useNodeId(id);
const { registry } = useNodeMetaRegistry();
return registry[nodeId];
}
//#endregion
export { useFlowNodeMeta };