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