Skip to content

Instantly share code, notes, and snippets.

@ts-ign0re
Last active August 29, 2015 14:25
Show Gist options
  • Save ts-ign0re/8e33408961a4f20cfd24 to your computer and use it in GitHub Desktop.
Save ts-ign0re/8e33408961a4f20cfd24 to your computer and use it in GitHub Desktop.
repeat jsx components-1
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