react-speakeazii 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 +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ The `VisitorTracker` component should be placed in your main entry file (e.g., `
|
|
|
24
24
|
|
|
25
25
|
```jsx
|
|
26
26
|
import React from "react";
|
|
27
|
-
import { VisitorTracker } from "react-
|
|
27
|
+
import { VisitorTracker } from "react-speakeazii";
|
|
28
28
|
|
|
29
29
|
function App() {
|
|
30
30
|
return (
|
|
@@ -47,7 +47,7 @@ You can call utility functions directly by passing your **API key**:
|
|
|
47
47
|
#### Get Blogs
|
|
48
48
|
|
|
49
49
|
```js
|
|
50
|
-
import { getBlogs } from "react-
|
|
50
|
+
import { getBlogs } from "react-speakeazii";
|
|
51
51
|
|
|
52
52
|
async function fetchBlogs() {
|
|
53
53
|
const blogs = await getBlogs("YOUR_API_KEY");
|
|
@@ -58,7 +58,7 @@ async function fetchBlogs() {
|
|
|
58
58
|
#### Get Reviews
|
|
59
59
|
|
|
60
60
|
```js
|
|
61
|
-
import { getReviews } from "react-
|
|
61
|
+
import { getReviews } from "react-speakeazii";
|
|
62
62
|
|
|
63
63
|
async function fetchReviews() {
|
|
64
64
|
const reviews = await getReviews("YOUR_API_KEY");
|
|
@@ -69,7 +69,7 @@ async function fetchReviews() {
|
|
|
69
69
|
#### Send Message
|
|
70
70
|
|
|
71
71
|
```js
|
|
72
|
-
import { sendMessage } from "react-
|
|
72
|
+
import { sendMessage } from "react-speakeazii";
|
|
73
73
|
|
|
74
74
|
async function contact() {
|
|
75
75
|
const response = await sendMessage("YOUR_API_KEY", {
|