Created
February 25, 2019 07:24
-
-
Save ecdundar/935148e77be7a6e23f2060fd01630fa2 to your computer and use it in GitHub Desktop.
BBText
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
import React from 'react'; | |
import { TouchableHighlight, Text, StyleSheet } from 'react-native'; | |
const BBText = props => { | |
return <Text style={styles.text}>{props.text}</Text>; | |
}; | |
const styles = StyleSheet.create({ | |
text: { | |
color: '#111825', | |
fontSize: 18, | |
marginTop: 16, | |
marginLeft: 35, | |
marginRight: 35, | |
}, | |
}); | |
export default BBText; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment