2024-06-21 19:49:13 +03:00

5 lines
195 B
JavaScript

import * as React from 'react';
import { TreeViewContext } from './TreeViewContext';
export var useTreeViewContext = function useTreeViewContext() {
return React.useContext(TreeViewContext);
};