React multistep form component
or, install it from NPM
To use this module in your app run:
sh npm install react-multistepnext, import it inside of your app:
sh const MultiStep = import from 'react-multistep'
Component has only one Prop, 'showNavigation', which controls if the navigation buttons should be visable:
prop=showNavigation type: boolean (default = true)
It takes an array of objects representing individual steps:
const steps = [ {name: 'StepOne', component: }, {name: 'StepTwo', component: }, {name: 'StepThree', component: }, {name: 'StepFour', component: } ];
1) Start by cloning the repo locally:
//--step 1 git clone https://github.com/srdjan/react-multistep.git //clone the repo cd react-multistep //navigate to the project folder
2) Next, install dependencies and build the component:
npm install npm run build // (or, `npm run build:prod` for optimized build)
3) On a succesful build, navigate to the example folder and try it:
cd ../example npm install npm start
4) Now you can open the example in your favorite browser:
open index.html