UNPKG

@hitachivantara/uikit-react-lab

Version:

Contributed React components for the NEXT UI Kit.

11 lines (10 loc) 285 B
import { useNodeMetaRegistry } from "../FlowContext/NodeMetaContext.js"; import { useNodeId } from "./useNodeId.js"; function useFlowNodeMeta(id) { const nodeId = useNodeId(id); const { registry } = useNodeMetaRegistry(); return registry[nodeId]; } export { useFlowNodeMeta };