Last active
August 29, 2015 14:18
-
-
Save jaredpalmer/604c4f8dd6d5b0ccd0cd to your computer and use it in GitHub Desktop.
React Native Hello World
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
var React = require('react-native'); | |
var { AppRegistry, Text } = React; | |
var App = React.createClass({ | |
render: function() { | |
return ( | |
<View> | |
<Text>Hello World!</Text> | |
</View> | |
); | |
} | |
}); | |
AppRegistry.registerComponent('Hola', () => App); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment