@sanity/ui
Version:
The Sanity UI components.
18 lines (13 loc) • 308 B
text/typescript
import {useContext} from 'react'
import {TreeContext} from './treeContext'
import {TreeContextValue} from './types'
/**
* @beta
*/
export function useTree(): TreeContextValue {
const tree = useContext(TreeContext)
if (!tree) {
throw new Error('Tree: missing context value')
}
return tree
}