import React from 'react'; import {SafeAreaView, StyleSheet} from 'react-native'; import {WebView} from 'react-native-webview'; const styles = StyleSheet.create({ container: {flex: 1, backgroundColor: '#20232a'}, }); const App = () => { return ( ); }; export default App;