UNPKG

@ichooss/xflow

Version:

[English (US)](README.md) | 简体中文

10 lines (6 loc) 200 B
import { useContext } from 'react'; import { GraphContext } from '../context/GraphContext'; export const useGraphInstance = () => { const { graph } = useContext(GraphContext); return graph; };