UNPKG

@armandoroman1016/react-multi-step-form

Version:

React Multi Step is a NPM package for easily building multi-step-forms with React. This package will provide you the Components and utilities to quickly build a multi-step-form.

6 lines (5 loc) 264 B
import * as React from "react"; export declare function createCtx<T>(defaultValue: T): readonly [React.Context<{ state: T; update: React.Dispatch<React.SetStateAction<T>>; }>, (props: React.PropsWithChildren<Record<string, unknown>>) => JSX.Element];