import React from 'react'
import { Text, View } from 'react-native'
const Chat = () => {
return (
<View><Text>Chat</Text></View>
)
}
export default Chat