Skip to content

Instantly share code, notes, and snippets.

@lrlineroa
Created February 24, 2020 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lrlineroa/1cca5edf7cffa7503717b0c2b59cca58 to your computer and use it in GitHub Desktop.
Save lrlineroa/1cca5edf7cffa7503717b0c2b59cca58 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import {View,Text,StyleSheet} from 'react-native';
class EntryPoint extends Component {
constructor(props) {
super(props);
this.state = { }
}
render() {
return ( <View>
<Text>Aquí va a a comenzar mi app</Text>
</View> );
}
}
export default EntryPoint;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment