mirror of
https://github.com/whyour/qinglong.git
synced 2026-04-04 15:20:36 +08:00
8 lines
169 B
TypeScript
8 lines
169 B
TypeScript
import { useContext } from 'react';
|
|
|
|
import { NodeRenderContext } from '../context';
|
|
|
|
export function useNodeRenderContext() {
|
|
return useContext(NodeRenderContext);
|
|
}
|