Obanana_test/app/pages/home/Chat.jsx

10 lines
162 B
JavaScript

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