Skip to content

Instantly share code, notes, and snippets.

@kitze
Created January 6, 2016 15:46
Show Gist options
  • Save kitze/0061e2aeeb2d6e2529b8 to your computer and use it in GitHub Desktop.
Save kitze/0061e2aeeb2d6e2529b8 to your computer and use it in GitHub Desktop.
react native bug
import React, { AppRegistry, View, Text } from 'react-native';
const AppContainer = () => {
console.warn('Rendering component');
console.log('simple log');
return (
<View>
<Text>
Hello world
</Text>
</View>
);
}
AppRegistry.registerComponent('mobile', () => AppContainer);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment