UNPKG

use-wizard

Version:

A dead-easy-to-use light-weight react hook to handle multi-paths wizards (and simple wizards too) and navigate into them.

5 lines (4 loc) 170 B
import { IWizard } from "./types/IWizard"; import { TStep } from "./types/TStep"; export { useWizard }; declare const useWizard: (options?: unknown) => [TStep, IWizard];