@hitachivantara/uikit-react-lab
Version:
Contributed React components to UI Kit by the community.
13 lines (12 loc) • 290 B
JavaScript
import { createContext } from "react";
//#region src/Wizard/WizardContext/WizardContext.tsx
var HvWizardContext = createContext({
context: {},
setContext: () => {},
summary: false,
setSummary: () => {},
tab: 0,
setTab: () => {}
});
//#endregion
export { HvWizardContext as default };