Created
February 4, 2019 21:17
-
-
Save dmitryshelomanov/6ff2c38e0e6be7421846c72fe9f888fc to your computer and use it in GitHub Desktop.
This file contains 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
const routes = { | |
Home: { | |
screen: () => ( | |
<View style={styles.container}> | |
<Text style={styles.paragraph}>Home Screen</Text> | |
</View> | |
), | |
navigationOptions: { | |
tabBarLabel: () => ( | |
<Text>own label</Text> | |
), | |
}, | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment