UNPKG

@ozen-ui/kit

Version:

React component library

12 lines (11 loc) 537 B
import { useContext, createContext } from 'react'; import { isDev } from '../../../../constants/environment'; export var StepperVerticalStepRootContextDefaultValue = null; export var StepperVerticalStepRootContext = createContext(StepperVerticalStepRootContextDefaultValue); export var useStepperVerticalStepRootContext = function () { return useContext(StepperVerticalStepRootContext); }; // Именованный провайдер if (isDev) { StepperVerticalStepRootContext.displayName = 'StepperVerticalStepRootContext'; }