Created
September 30, 2017 10:55
-
-
Save hanipcode/2fb2c9c5b1db7709f91c2a0165ab521b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| import { View } from 'react-native'; | |
| import SearchBox from './SearchBox'; | |
| import PickupMapView from './PickupMapView'; | |
| class PickupPage extends Component { | |
| constructor(props) { | |
| super(props); | |
| this.state = { | |
| pickupCoordinate: null, | |
| dropCoordinate: null | |
| }; | |
| } | |
| render() { | |
| return ( | |
| <View style={{ flex: 1 }}> | |
| <SearchBox /> | |
| <SearchBox /> | |
| <PickupMapView /> | |
| </View> | |
| ); | |
| } | |
| } | |
| export default PickupPage; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment