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

12 lines (9 loc) 379 B
import {createContext} from 'sanity/_createContext' import type {CalendarContextValue} from '../../core/studio/components/navbar/search/components/filters/filter/inputs/date/datePicker/calendar/contexts/CalendarContext' /** * @internal */ export const CalendarContext = createContext<CalendarContextValue | undefined>( 'sanity/_singletons/context/calendar', undefined, )