basic layout of main page

- consists of the navbar, chat, and adspace components
This commit is contained in:
Arjun Patel
2018-04-21 15:18:34 -07:00
parent ec7102e73b
commit b03f301aa5
7 changed files with 156 additions and 20 deletions
+1 -11
View File
@@ -3,9 +3,9 @@
*/
import React, { Component } from 'react';
import {
Dimensions,
View,
ImageBackground,
Dimensions,
Text,
TouchableOpacity,
Permissions,
@@ -21,16 +21,6 @@ const backgroundLink = 'https://cdn.shopify.com/s/files/1/2567/6484/products/Pol
type Props = {};
export default class Home extends Component<Props> {
componentDidMount() {
console.log('mounted');
AsyncStorage.getItem('longitude').then((lon) => {
console.log(lon);
});
AsyncStorage.getItem('latitude').then((lat) => {
console.log(lat);
});
}
connect() {
Actions.loading();
}