UNPKG

ringcentral-widgets

Version:
12 lines (8 loc) 293 B
import { createContext, MutableRefObject } from 'react'; export type SelectListContextValue = { scrollElmRef: MutableRefObject<any>; }; export const SelectListContext = createContext<SelectListContextValue>({ scrollElmRef: null, }); SelectListContext.displayName = 'SelectListContext';