Skip to content

Instantly share code, notes, and snippets.

@GeoDoo
Last active January 6, 2017 21:30
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 GeoDoo/8bc05081942cdbee6d522fc7d6250c81 to your computer and use it in GitHub Desktop.
Save GeoDoo/8bc05081942cdbee6d522fc7d6250c81 to your computer and use it in GitHub Desktop.
React hello world native
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