Files
tixto/app/screens/main/chat.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

30 lines
510 B
JavaScript

/*
* 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 = {
}