Skip to content

Instantly share code, notes, and snippets.

@hanipcode
Created September 30, 2017 09:44
Show Gist options
  • Select an option

  • Save hanipcode/f6d0962957ef5a41e072ae32ec9eae0a to your computer and use it in GitHub Desktop.

Select an option

Save hanipcode/f6d0962957ef5a41e072ae32ec9eae0a to your computer and use it in GitHub Desktop.
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import Pickup from './src/containers/PickupPage';
export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
<Pickup />
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
marginTop: 40
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment