import React from 'react';
import {SafeAreaView, StyleSheet, Text, View} from 'react-native';
const App = (): JSX.Element => {
return (
<SafeAreaView style={styles.container}>
<WebView source={{uri: '<https://www.google.com>'}} />
<View style={styles.header} />
<Text style={styles.text}>App</Text>
<View style={styles.footer} />
</SafeAreaView>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#111111',
},
header: {
flex: 1,
backgroundColor: '#111111',
},
footer: {
flex: 1,
backgroundColor: '#111111',
},
text: {
color: 'white',
fontSize: 30,
},
});
export default App;