Last active
September 30, 2017 10:54
-
-
Save hanipcode/c978597e0e9406ac4b0c35184391a07b 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'; | |
| class PickupPage extends Component { | |
| constructor(props) { | |
| super(props); | |
| this.state = { | |
| pickupCoordinate: null, | |
| dropCoordinate: null | |
| }; | |
| } | |
| render() { | |
| return ( | |
| <View style={{ flex: 1}}> | |
| <SearchBox /> | |
| <SearchBox /> | |
| </View> | |
| ); | |
| } | |
| } | |
| export default PickupPage; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment