Skip to content

Instantly share code, notes, and snippets.

@FabricioFFC
Created July 1, 2018 23:51
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 FabricioFFC/a98aa89fd513989d03913c673868e41e to your computer and use it in GitHub Desktop.
Save FabricioFFC/a98aa89fd513989d03913c673868e41e to your computer and use it in GitHub Desktop.
import React from 'react';
import {
StyleSheet,
View,
} from 'react-native';
import TeamsList from './../components/TeamsList';
const styles = StyleSheet.create({
itemsContainer: {
backgroundColor: '#f4f5f9',
flex: 1,
flexDirection: 'column',
justifyContent: 'space-between',
paddingBottom: 25,
paddingLeft: 10,
paddingRight: 10,
paddingTop: 25,
},
});
const HomeScreen = () => (
<View style={styles.itemsContainer}>
<TeamsList />
</View>
);
export default HomeScreen;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment