Skip to content

Instantly share code, notes, and snippets.

@jaredpalmer
Last active August 29, 2015 14:18
Show Gist options
  • Save jaredpalmer/604c4f8dd6d5b0ccd0cd to your computer and use it in GitHub Desktop.
Save jaredpalmer/604c4f8dd6d5b0ccd0cd to your computer and use it in GitHub Desktop.
React Native Hello World
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