Created
July 11, 2019 08:50
-
-
Save indreklasn/81005fc4559584fe319b93c5c73e3ff4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
render() { | |
return ( | |
<View style={styles.panel}> | |
<VrButton | |
onClick={this.incrementCount} | |
style={styles.greetingBox} | |
> | |
<Text>+</Text> | |
</VrButton> | |
<VrButton | |
onClick={this.decrementCount} | |
style={styles.greetingBox} | |
> | |
<Text>-</Text> | |
</VrButton> | |
<Text style={styles.greeting}> | |
{`Count: ${this.state.count}`} | |
</Text> | |
</View> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment