Skip to content

Commit 76dd687

Browse files
committed
version
1 parent ce35ffc commit 76dd687

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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": "2.0.5",
5+
"version": "2.0.6",
66
"private": false,
77
"main": "src/dist/index",
88
"types": "src/dist/index.d.ts",

src/App.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Step3 from "./stepComponents/Step3";
66
import Step4 from "./stepComponents/Step4";
77

88
export const Navigation = (props: NavigationComponentProps) => {
9-
console.log(props);
9+
console.log({ navProps: props });
1010
return (
1111
<div>
1212
<button data-testid="global-prev" onClick={props.prev}>
@@ -22,7 +22,7 @@ export const Navigation = (props: NavigationComponentProps) => {
2222
const App = () => {
2323
return (
2424
<div className="steps_wrapper">
25-
<h1>React Step Builder v1.1.0</h1>
25+
<h1>React Step Builder v2.0.6</h1>
2626
<Steps
2727
config={{
2828
navigation: {

0 commit comments

Comments
 (0)