Skip to content

Instantly share code, notes, and snippets.

@xiy
Created June 7, 2016 18:21
Show Gist options
  • Save xiy/16f19ac37ee033b65cb21b3a85e47c20 to your computer and use it in GitHub Desktop.
Save xiy/16f19ac37ee033b65cb21b3a85e47c20 to your computer and use it in GitHub Desktop.
The crappy button - Part 4
export default class Button extends React.Component {
// ...
render() {
<TouchableOpacity>
<Text>{this.props.text}</Text>
</TouchableOpacity>
}
}
Button.defaultProps = {
text: 'Button',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment