ringcentral-widgets
Version:
RingCentral Integration Widget Library
12 lines (8 loc) • 293 B
text/typescript
import { createContext, MutableRefObject } from 'react';
export type SelectListContextValue = {
scrollElmRef: MutableRefObject<any>;
};
export const SelectListContext = createContext<SelectListContextValue>({
scrollElmRef: null,
});
SelectListContext.displayName = 'SelectListContext';