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.

8 lines (7 loc) 179 B
/// <reference types="react" /> interface Props { steps: any[]; transition?: string; } export declare const FormCarousel: (props: Props) => JSX.Element; export {};