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.

7 lines (6 loc) 170 B
/// <reference types="react" /> export declare type NonEmptyArray<T> = [T, ...T[]]; export interface Step { component: React.ComponentType; name: string; }