Appregistry React Native
import { Text, AppRegistry } from 'react-native';
const App = (props) => ( <View> <Text>App1</Text> </View>);
AppRegistry.registerComponent('Appname', () => App);
Troubled Tarsier