UNPKG

@ozen-ui/kit

Version:

React component library

15 lines (14 loc) 599 B
import { useContext, createContext } from 'react'; import { isDev } from '../../../../constants/environment'; export var AutocompleteListCardChildrenContextDefaultValue = { children: null, }; export var AutocompleteListCardChildrenContext = createContext(AutocompleteListCardChildrenContextDefaultValue); export var useAutocompleteListCardChildrenContext = function () { return useContext(AutocompleteListCardChildrenContext); }; // Именованный провайдер if (isDev) { AutocompleteListCardChildrenContext.displayName = 'AutocompleteListCardChildrenContext'; }