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.

9 lines (8 loc) 248 B
import * as React from "react"; import "./FormStep.scss"; export interface FormStepProps { component: React.ComponentType; stepIndex: number; } declare const FormStep: (props: FormStepProps) => JSX.Element; export default FormStep;