File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 5
5
## Overview
6
6
7
7
React Step Builder allows you to combine states of multiple components in one place
8
- and navigate between components without losing the state from other step components.
8
+ and navigate between step components without losing the state from other step components.
9
9
10
10
It only provides wrapper components and methods to be able to render your step components
11
11
without being forced to use certain UI features in your step structure.
Original file line number Diff line number Diff line change 2
2
"name" : " react-step-builder" ,
3
3
"description" : " Unopinionated multi step interface builder." ,
4
4
"author" :
" Samet Mutevelli <[email protected] > (https://sametmutevelli.com)" ,
5
- "version" : " 1.1.5 " ,
5
+ "version" : " 1.1.6 " ,
6
6
"private" : false ,
7
7
"devDependencies" : {
8
8
"react" : " ^16.12.0" ,
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ const Step1 = (props) => {
27
27
{ props . step . hasPrev ( ) && < button onClick = { props . prev } > Previous</ button > }
28
28
{ props . step . hasNext ( ) && < button onClick = { props . next } > Next</ button > }
29
29
< button onClick = { ( ) => props . jump ( 3 ) } > Jump to 3. Step</ button >
30
+ < button onClick = { ( ) => props . jump ( 5 ) } > Jump to 5. Step</ button >
30
31
</ div >
31
32
) ;
32
33
} ;
You can’t perform that action at this time.
0 commit comments