UNPKG

sanity

Version:

Sanity is a real-time content infrastructure with a scalable, hosted backend featuring a Graph Oriented Query Language (GROQ), asset pipelines and fast edge caches

13 lines (10 loc) 369 B
import {createContext} from 'sanity/_createContext' import type {PresentationDisplayedDocumentContextValue} from '../../presentation/loader/types' /** * @internal */ export const PresentationDisplayedDocumentContext = createContext<PresentationDisplayedDocumentContextValue | null>( 'sanity/_singletons/context/presentation/displayed-document', null, )