chayns-components
Version:
A set of beautiful React components for developing chayns® applications.
19 lines (18 loc) • 447 B
JavaScript
import { createContext } from 'react';
const SetupWizardContext = /*#__PURE__*/createContext({
enabledSteps: [],
completedSteps: [],
requiredSteps: [],
currentStep: -1,
contentStyle: null,
stepComplete: null,
stepEnabled: null,
stepRequired: null,
previousStep: null,
nextStep: null,
toStep: null,
resetToStep: null,
notComplete: null
});
export default SetupWizardContext;
//# sourceMappingURL=setupWizardContext.js.map