@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
21 lines (17 loc) • 530 B
JavaScript
;
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.WizardStepContext = void 0;
var React = _interopRequireWildcard(require("react"));
const WizardStepContext = /*#__PURE__*/React.createContext({
index: 0,
status: "disabled",
nextStepStatus: "disabled",
isCompact: false,
isActive: false,
onChangeStep: () => {},
onClose: () => {}
});
exports.WizardStepContext = WizardStepContext;