@kindly/react-chat 2.57.0 → 2.57.2
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/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -9
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
## Getting started
|
|
2
2
|
|
|
3
3
|
```bash
|
|
4
|
-
npm install @kindly/react-chat react react-dom pusher-js
|
|
4
|
+
npm install @kindly/react-chat react react-dom pusher-js
|
|
5
5
|
```
|
|
6
6
|
|
|
7
7
|
Pusher and react modules are peerDependencies to keep bundle size lower
|
|
@@ -12,7 +12,7 @@ import KindlyChat, { GlobalStyles } from '@kindly/react-chat';
|
|
|
12
12
|
|
|
13
13
|
export default () => (
|
|
14
14
|
<div>
|
|
15
|
-
<KindlyChat botKey=
|
|
15
|
+
<KindlyChat botKey="YOUR KEY" />
|
|
16
16
|
|
|
17
17
|
{/* For fonts use the GlobalStyles component */}
|
|
18
18
|
<GlobalStyles />
|