1.0.7 • Published 1 year ago

react-multi-form-custom-fix v1.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

react-multi-form

This is fork fix for React v18 of multi-step form library

Demo

See Live Demo here

Demo Link

Add your Brand Colors

Link

Install

npm i react-multi-form-custom-fix

Usage

import React, { Component } from 'react'

import { MultiStepForm, Step } from 'react-multi-form';

class Example extends Component {
  render() {
    return (
      <MutliStep activeStep={1}>
        <Step label="one">
          <p>One</p>
        </Step>
        <Step label="Two">
          <p>Two</p>
        </Step>
        <Step label="Three">
          <p>Three</p>
        </Step>
      </MultiStep>
    )
  }
}

Documentation

This package exports two components <MultiStepForm /> and <Step />.

<MultiStepForm />

Props

Prop NametypeDescriptiondefaultrequired
activeStepIntdetermines the active step-YES
accentColorStringaccent color of the stepper#24a19cNO

<Step />

Props

Prop NametypeDescriptiondefaultrequired
labelStringlabel text to be rendered in the top stepper-NO

See the example code here

License

MIT © tachyondev