UNPKG

@sanity/ui-workshop

Version:

An environment for designing, reviewing, and quality-testing React components.

15 lines (10 loc) 288 B
import {useContext} from 'react' import {A11yContext, A11yContextValue} from './A11yContext' /** @internal */ export function useA11y(): A11yContextValue { const props = useContext(A11yContext) if (!props) { throw new Error('A11y: missing context value') } return props }