UNPKG

react-native-pjsip

Version:
15 lines (11 loc) 388 B
import {DeviceEventEmitter, NativeModules, requireNativeComponent} from 'react-native'; import PropTypes from 'prop-types'; const RemoteVideoView = { name: 'PjSipRemoteVideoView', propTypes: { windowId: PropTypes.string.isRequired, objectFit: PropTypes.oneOf(['contain', 'cover']) }, }; const View = requireNativeComponent('PjSipRemoteVideoView', null); export default View;