1.0.0 • Published 9 years ago

react-wizard-component v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

Responsive ReactJS multi step form component

Instructions

To install this module run:

npm install react-multistep

next, require it inside of your app:

var Wizard = require('react-wizard-component')

Parent component with three public methods to navigate the steps:

WizardRef.next()  // goes to the next step
WizardRef.back()  // goes to the previous step
WizardRef.skip()  // jumps to the desired step

Supports a validation callback

WizardRef.next()  // goes to the next step
WizardRef.back()  // goes to the previous step
WizardRef.skip()  // jumps to the desired step

To build included example:

npm run build

Now open ./example/index.html in your favorite browser