Skip to content

Instantly share code, notes, and snippets.

@ts-ign0re
ts-ign0re / .jsx
Last active August 29, 2015 14:25
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>
)
}