Obanana_test/app/pages/home/Chat.jsx

10 lines
162 B
React
Raw Normal View History

2023-09-26 14:33:01 +08:00
import React from 'react'
import { Text, View } from 'react-native'
const Chat = () => {
return (
<View><Text>Chat</Text></View>
)
}
export default Chat