vaderjs 1.3.3-4943326ca410 → 1.3.3-4944326ca411
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 +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
2. Install vaderjs
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
npm i vaderjs@
|
|
23
|
+
npm i vaderjs@latest
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
4. Create Proper Folders
|
|
@@ -81,7 +81,7 @@ export default function(req, res){
|
|
|
81
81
|
|
|
82
82
|
return <>
|
|
83
83
|
<h1>${count}</h1>
|
|
84
|
-
<button onClick={(
|
|
84
|
+
<button onClick={(event)=>{setCount(count + 1)}}>
|
|
85
85
|
</>
|
|
86
86
|
}
|
|
87
87
|
|
package/package.json
CHANGED