Last active
November 3, 2019 19:09
-
-
Save vemarav/5cc2d537c97ed4bf1b4a49294f09ebfc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import {Dimensions, StyleSheet, Text, View} from 'react-native'; | |
const {height} = Dimensions.get('screen'); | |
const App = () => { | |
return ( | |
<View style={styles.container}> | |
<View style={styles.center}> | |
<Text>Hello React Native Web!!!</Text> | |
</View> | |
</View> | |
); | |
}; | |
const styles = StyleSheet.create({ | |
container: { | |
height, | |
}, | |
center: { | |
flex: 1, | |
justifyContent: 'center', | |
alignItems: 'center', | |
}, | |
}); | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment