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) 353 B
import {createContext} from 'sanity/_createContext' import type {CommentsAuthoringPathContextValue} from '../../core/comments/context/authoring-path/types' /** * @beta * @hidden */ export const CommentsAuthoringPathContext = createContext<CommentsAuthoringPathContextValue | null>( 'sanity/_singletons/context/comments-authoring-path', null, )