import React from 'react'; import { string, func } from 'prop-types'; import WebView from 'react-native-autoheight-webview'; const VimeoPlayer = ({ videoId, onError }) => { return ( `, }} /> ); }; export default VimeoPlayer; const style = { height: 200, maxWidth: '100%', }; VimeoPlayer.propTypes = { videoId: string, onError: func, };