react-input-chips 0.3.2 → 0.3.4
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 +4 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,6 +12,7 @@ You have full control over
|
|
|
12
12
|
- chip conversion trigger
|
|
13
13
|
|
|
14
14
|
## Demo
|
|
15
|
+
[Sandbox example](https://codesandbox.io/p/sandbox/shf8wx)
|
|
15
16
|
|
|
16
17
|

|
|
17
18
|
|
|
@@ -31,14 +32,14 @@ You just need to import the `<InputChips/>` component in the file you want the *
|
|
|
31
32
|
The following is the path to it
|
|
32
33
|
|
|
33
34
|
```bash
|
|
34
|
-
import "../node_modules/react-input-
|
|
35
|
+
import "../node_modules/react-input-chips/dist/index.css";
|
|
35
36
|
```
|
|
36
37
|
|
|
37
38
|
Hers is the simple plain example
|
|
38
39
|
|
|
39
40
|
```javascript
|
|
40
41
|
import { useState } from "react";
|
|
41
|
-
import { InputChips } from "react-input-
|
|
42
|
+
import { InputChips } from "react-input-chips";
|
|
42
43
|
|
|
43
44
|
const MyComponent = () => {
|
|
44
45
|
const [chips, setChips] = useState<string[]>([]);
|
|
@@ -142,7 +143,7 @@ Any suggestions are welcome.
|
|
|
142
143
|
|
|
143
144
|
## Support
|
|
144
145
|
|
|
145
|
-
For support, email meetbhalodiya1030@gmail.com or open a discussion/issue
|
|
146
|
+
For support, email at meetbhalodiya1030@gmail.com or open a discussion/issue
|
|
146
147
|
|
|
147
148
|
## Authors
|
|
148
149
|
|