Skip to content

Instantly share code, notes, and snippets.

@ckdevrel
Created November 4, 2017 15:24
Show Gist options
  • Save ckdevrel/359d8575c5f9e0f965bc92ac1c4293d8 to your computer and use it in GitHub Desktop.
Save ckdevrel/359d8575c5f9e0f965bc92ac1c4293d8 to your computer and use it in GitHub Desktop.
class Button extends Component {
state = {
text: 'Failure'
}
updateButtonText = () ⇒ this.setState({ text: 'Success' })
render() {
return (
<View>
<Text onPress = {this.updateButtonText}>
{this.state.text}
</Text>
</View>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment