Created
June 16, 2019 19:42
-
-
Save rbk/49a977092168d10a0c675c853e3545dc to your computer and use it in GitHub Desktop.
React Native Tutorial #1 - Render - 01
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
render() { | |
return ( | |
<View> | |
<View> | |
<Text>Meditation Timer</Text> | |
</View> | |
<Text>10:00</Text> | |
<Text>Close your eyes, relax, and breath naturally.</Text> | |
<TouchableOpacity > | |
<Text>Begin Session</Text> | |
</TouchableOpacity> | |
</View> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment