react-sip-kit 0.3.61 → 0.3.62
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 +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -77,12 +77,12 @@ function DialPad() {
|
|
|
77
77
|
### 3. Render media streams
|
|
78
78
|
|
|
79
79
|
```tsx
|
|
80
|
-
import {
|
|
80
|
+
import { VideoStream, AudioStream } from 'react-sip-kit';
|
|
81
81
|
|
|
82
|
-
<
|
|
83
|
-
<
|
|
84
|
-
<
|
|
85
|
-
<
|
|
82
|
+
<VideoStream type="local" lineNumber={1} />
|
|
83
|
+
<VideoStream type="remote" lineNumber={1} />
|
|
84
|
+
<AudioStream type="local" lineNumber={1} />
|
|
85
|
+
<AudioStream type="remote" lineNumber={1} />
|
|
86
86
|
```
|
|
87
87
|
|
|
88
88
|
---
|