qinglong/src/pages/scenario/flowgram/hooks/use-node-render-context.ts
2025-11-24 01:49:59 +08:00

8 lines
169 B
TypeScript

import { useContext } from 'react';
import { NodeRenderContext } from '../context';
export function useNodeRenderContext() {
return useContext(NodeRenderContext);
}