-
-
Save ts-ign0re/8e33408961a4f20cfd24 to your computer and use it in GitHub Desktop.
repeat jsx components-1
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
var Button = React.createClass({ | |
render: function(){ | |
return ( | |
<TouchableHighlight style={styles.button} onPress={this._doSomeThing} underlayColor="#fff" activeOpacity='0.5'> | |
<View> | |
<Text>{this.props.buttonName}</Text> | |
</View> | |
</TouchableHighlight> | |
) | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment