Skip to content

Instantly share code, notes, and snippets.

@lucianomlima
Created June 15, 2017 22:22
Show Gist options
  • Save lucianomlima/1a0c7f50b3afddf1be5bcffa257916f1 to your computer and use it in GitHub Desktop.
Save lucianomlima/1a0c7f50b3afddf1be5bcffa257916f1 to your computer and use it in GitHub Desktop.
React Native one file script start
import React, { Component } from 'react';
import { Text, View } from 'react-native';
export default class App extends Component {
render() {
return (
<View>
<Text>Hello World!</Text>
</View>
);
}
}
import { AppRegistry } from 'react-native';
import App from './app';
AppRegistry.registerComponent('ExampleApp', () => App);
import { AppRegistry } from 'react-native';
import App from './app';
AppRegistry.registerComponent('ExampleApp', () => App);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment