import {WebView} from 'react-native-webview'
import Constants from 'expo-constants'
import { StyleSheet } from 'react-native'
import { useLocalSearchParams } from 'expo-router'
export function Web(){
const params = useLocalSearchParams()
return(
<WebView
uri={params.uri}
style={{flex:1}}
/>
)
}