Skip to content

Instantly share code, notes, and snippets.

@abhitheawesomecoder
Created June 25, 2018 14:38
Show Gist options
  • Save abhitheawesomecoder/64d5f058608eacf04e3e8dfbd2054a2e to your computer and use it in GitHub Desktop.
Save abhitheawesomecoder/64d5f058608eacf04e3e8dfbd2054a2e to your computer and use it in GitHub Desktop.
import React from 'react';
import { View, Text } from 'react-native';
export default class HomeScreen extends React.Component {
render() {
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Text>Home Screen</Text>
</View>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment