Try it here
To use this module in your app run:
npm install react-multistepnext, import it inside of your app:
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)const steps = [
{name: 'StepOne', component: <StepOne/>},
{name: 'StepTwo', component: <StepTwo/>},
{name: 'StepThree', component: <StepThree/>},
{name: 'StepFour', component: <StepFour/>}
];
<Multistep showNavigation={true} steps={steps}/>git clone https://github.com/srdjan/react-multistep.git //clone the repo
cd react-multistep //navigate to the project foldercd src
npm install
npm run buildOn succesful build, component is packaged in the './dist' folder. Navigate to the example and build it:
cd ../example
npm install
npm run buildopen index.html
