Skip to content

Instantly share code, notes, and snippets.

@janhesters
Created September 18, 2018 20:52
Show Gist options
  • Save janhesters/ae6d81dfb9a3aa54da8849c807e994ac to your computer and use it in GitHub Desktop.
Save janhesters/ae6d81dfb9a3aa54da8849c807e994ac to your computer and use it in GitHub Desktop.
import styles from './styles';
import React, { Component } from 'react';
import { Text, View } from 'react-native';
class NameScreen extends Component {
render() {
return (
<View style={styles.container}>
<Text>This is the NameScreen.</Text>
</View>
);
}
}
export default NameScreen; // e.g. DetailScreen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment