import React from 'react'; import { WebView } from 'react-native-webview'; import { useRoute } from '@react-navigation/native'; import { SafeBlueArea } from '../../BlueComponents'; import navigationStyle from '../../components/navigationStyle'; const HodlHodlWebview = () => { const { uri } = useRoute().params; return ( ); }; HodlHodlWebview.navigationOptions = navigationStyle({ closeButton: true, title: '', headerLeft: null, }); export default HodlHodlWebview;