Sherlock / components / Webview.tsx
Webview.tsx
Raw
import {WebView} from 'react-native-webview';
import Constants from 'expo-constants';


export default function Webview(url:any){
  const uri = url.url;

  return(
    <WebView source={{uri:uri}} />
  )

}