UNPKG

react-use-wizard

Version:

React wizard (stepper) builder without the hassle, powered by hooks.

9 lines (5 loc) 220 B
import * as React from 'react'; import { WizardValues } from './types'; const WizardContext = React.createContext<WizardValues | null>(null); WizardContext.displayName = 'WizardContext'; export default WizardContext;