UNPKG

react-native-webrtc-web-shim

Version:
7 lines (5 loc) 220 B
import React from 'react'; import { RTCView as OriginalRTCView } from 'react-native-webrtc'; export default function RTCView({ stream, ...props }) { return <OriginalRTCView streamURL={stream.toURL()} {...props} />; }