UNPKG

@sgnl-pro/react-tree

Version:

A tree view component for React

8 lines (6 loc) 221 B
import { useContext } from 'react'; import { treeStateContext } from './treeContext'; import { ITreeState } from './treeReducer'; export const useTreeState = (): ITreeState => { return useContext(treeStateContext); };