Last active
January 6, 2017 21:30
-
-
Save GeoDoo/8bc05081942cdbee6d522fc7d6250c81 to your computer and use it in GitHub Desktop.
React hello world native
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, { Component } from 'react' | |
import { Text, View } from 'react-native' | |
class HelloWorld extends Component { | |
render() { | |
return ( | |
<View> | |
<Text> | |
Hello World! | |
</Text> | |
</View> | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment