Skip to content

Commit 93c1af3

Browse files
authored
Merge pull request #2 from sametweb/v2
last update
2 parents 606a327 + 57d44a2 commit 93c1af3

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
## Overview
66

77
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.
99

1010
It only provides wrapper components and methods to be able to render your step components
1111
without being forced to use certain UI features in your step structure.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "react-step-builder",
33
"description": "Unopinionated multi step interface builder.",
44
"author": "Samet Mutevelli <[email protected]> (https://sametmutevelli.com)",
5-
"version": "1.1.5",
5+
"version": "1.1.6",
66
"private": false,
77
"devDependencies": {
88
"react": "^16.12.0",

src/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ const Step1 = (props) => {
2727
{props.step.hasPrev() && <button onClick={props.prev}>Previous</button>}
2828
{props.step.hasNext() && <button onClick={props.next}>Next</button>}
2929
<button onClick={() => props.jump(3)}>Jump to 3. Step</button>
30+
<button onClick={() => props.jump(5)}>Jump to 5. Step</button>
3031
</div>
3132
);
3233
};

0 commit comments

Comments
 (0)