react-sip-kit 0.5.16 → 0.5.19

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 CHANGED
@@ -86,7 +86,7 @@ You can fetch **methods** and **watch state** like this:
86
86
  // App.tsx
87
87
  import { SipConnection } from './main';
88
88
 
89
- function DialPad({ username }: { username: string }) {
89
+ function App({ username }: { username: string }) {
90
90
  const { dialByNumber } = SipConnection.methods(username);
91
91
  const { watch } = SipConnection.get(username);
92
92
  const { lines, status } = watch();