10 lines
162 B
JavaScript
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 |