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
12 lines (9 loc) • 319 B
text/typescript
import {createContext} from 'sanity/_createContext'
import type {CommentsIntentContextValue} from '../../core/comments/context/intent/types'
/**
* @internal
*/
export const CommentsIntentContext = createContext<CommentsIntentContextValue | undefined>(
'sanity/_singletons/context/comments-intent',
undefined,
)