Files
tixto/app/screens/main/dashboard.js
T
Arjun Patel 6189437670 will fix asyncstorage later
midterm solution - passing lat and long as props
2018-06-29 21:32:50 -07:00

37 lines
601 B
JavaScript

/*
* Dashboard/Menu
*/
import React, { Component } from 'react';
import {
Dimensions,
View,
Text
} from 'react-native';
import {
Actions
} from 'react-native-router-flux';
import { Fonts } from '../utils/Fonts.js';
const windowWidth = Dimensions.get('window').width;
const windowHeight = Dimensions.get('window').height;
type Props = {};
export default class Dashboard extends Component<Props> {
constructor(props) {
super(props);
}
render() {
console.log('in dashboard');
return (
<View>
<Text>hasdf</Text>
</View>
);
}
}
const styles = {
}