Skip to content

Instantly share code, notes, and snippets.

@dabbott
Created November 1, 2019 00:45
Show Gist options
  • Select an option

  • Save dabbott/6ea3ab7c71fb32bef237025f0c6de2a8 to your computer and use it in GitHub Desktop.

Select an option

Save dabbott/6ea3ab7c71fb32bef237025f0c6de2a8 to your computer and use it in GitHub Desktop.
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
export default function App() {
return (
<View style={styles.container}>
<Text>Let's change this line to see if it works!</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment