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