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
+29
View File
@@ -0,0 +1,29 @@
/*
* Chat 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 Chat extends Component<Props> {
render() {
return (
<View style={styles.container}>
<Text>chat</Text>
</View>
);
}
}
const styles = {
}