widget-chatbot 1.0.1 → 1.0.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 +3 -3
- package/dist/index.js +1 -1
- package/package.json +1 -8
package/README.md
CHANGED
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
## Getting Started
|
|
13
13
|
|
|
14
14
|
```sh
|
|
15
|
-
npm i
|
|
15
|
+
npm i widget-chatbot
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## Usage
|
|
19
19
|
|
|
20
20
|
```sh
|
|
21
|
-
import Widget from '
|
|
21
|
+
import Widget from 'widget-chatbot';
|
|
22
22
|
import { createBrowserHistory } from 'history';
|
|
23
23
|
|
|
24
24
|
const App = ()=>{
|
|
@@ -34,7 +34,7 @@ const App = ()=>{
|
|
|
34
34
|
uriBackendEnt: 'uri backend go',
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
-
const textSayHiAndGetStarted = '
|
|
37
|
+
const textSayHiAndGetStarted = 'Hi and get started';
|
|
38
38
|
|
|
39
39
|
const history = createBrowserHistory();
|
|
40
40
|
|