Skip to content

Instantly share code, notes, and snippets.

@FabDuarte
Created September 2, 2018 19:47
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 FabDuarte/210b65eafd4d1d2afaedb4d29e99d296 to your computer and use it in GitHub Desktop.
Save FabDuarte/210b65eafd4d1d2afaedb4d29e99d296 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import { View, Text } from 'react-native';
export default class App extends Component {
render() {
return (
<View style={styles.container}>
<Text style={styles.hello}>Hello world!</Text>
</View>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment