import * as React from 'react'; import WebView from 'react-native-webview'; export const VideoWebView = ({ content }: { content: string }) => { return content ? (
${content}
` }} automaticallyAdjustContentInsets={false} /> ) : ( <> ); };