/* * 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 { render() { return ( chat ); } } const styles = { }