Files
tixto/app/screens/main/navbar.js
T
Arjun Patel b03f301aa5 basic layout of main page
- consists of the navbar, chat, and adspace components
2018-04-21 15:18:34 -07:00

31 lines
517 B
JavaScript

/*
* Navbar component within Main
*/
import React, { Component } from 'react';
import {
Dimensions,
View,
Text,
} from 'react-native';
import {
Actions
} from 'react-native-router-flux';
const windowWidth = Dimensions.get('window').width;
const windowHeight = Dimensions.get('window').height;
type Props = {};
export default class Navbar extends Component<Props> {
render() {
return (
<View style={styles.container}>
<Text>navbar</Text>
</View>
);
}
}
const styles = {
}