Skip to content

React multistep form component using Browersify

License

Notifications You must be signed in to change notification settings

blacktemplar/react-multistep

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Responsive React multistep form component

React 15.4.1 - Babel 6.5.2 - Browserify 13.1.1

#####(Webpack version is here: https://github.com/Srdjan/react-multistep-with-webpack)

version downloads MIT License

NPM

=========================================

Working demo

[List of forks] (https://github.com/srdjan/react-multistep/network/members)

Instructions

To install this module run:

npm install react-multistep

next, require it inside of your app:

var Multistep = require('react-multistep').Multistep

Configuration:

showNavigation type: boolean (by default = true)
steps type: array of objects

Example:

const steps = [
              {name: 'StepOne', component: <StepOne/>},
              {name: 'StepTwo', component: <StepTwo/>},
              {name: 'StepThree', component: <StepThree/>},
              {name: 'StepFour', component: <StepFour/>}
            ];
<Multistep showNavigation={true} steps={steps}/>

To build included example:

npm run build

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

Dev instructions

First clone the repository and then run:

npm install

To test run:

npm test

About

React multistep form component using Browersify

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • CSS 64.0%
  • JavaScript 33.8%
  • HTML 2.2%