Skip to content

Instantly share code, notes, and snippets.

@tsh-code
Created October 3, 2018 13:16
Show Gist options
  • Save tsh-code/43e74b2ed634ec8cff0ca3c890fa30c8 to your computer and use it in GitHub Desktop.
Save tsh-code/43e74b2ed634ec8cff0ca3c890fa30c8 to your computer and use it in GitHub Desktop.
how-to-make-react-native-1
import React, {Component} from 'react';
import {Button, Text, View} from 'react-native';
class HelloWorld extends Component {
handlePress() {
// do something
}
render() {
return (
<View>
<Text>Hello world!</Text>
<Button onPress={this.handlePress}>Press me!</Button>
</View>);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment