Created
January 6, 2016 15:46
-
-
Save kitze/0061e2aeeb2d6e2529b8 to your computer and use it in GitHub Desktop.
react native bug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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