reactjs-multi-stepper 1.3.7 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,11 +32,7 @@ yarn add reactjs-multi-stepper
|
|
|
32
32
|
## 🔨 Basic Usage
|
|
33
33
|
|
|
34
34
|
```javascript
|
|
35
|
-
import {
|
|
36
|
-
MultiStepper,
|
|
37
|
-
MultiStepperProvider,
|
|
38
|
-
useMultiStepper,
|
|
39
|
-
} from "reactjs-multi-stepper";
|
|
35
|
+
import { MultiStepper,MultiStepperProvider,useMultiStepper } from "reactjs-multi-stepper";
|
|
40
36
|
|
|
41
37
|
function App() {
|
|
42
38
|
// Define reusable base style
|
|
@@ -110,7 +106,6 @@ function App() {
|
|
|
110
106
|
}
|
|
111
107
|
|
|
112
108
|
export default App;
|
|
113
|
-
|
|
114
109
|
```
|
|
115
110
|
|
|
116
111
|
## 🧩 API Reference
|