Uber_Clone/app/(root)/(tabs)/chat.tsx

10 lines
238 B
TypeScript

import { Text } from "react-native";
import { SafeAreaView } from "react-native-safe-area-context";
const Chat =() => {
return(
<SafeAreaView>
<Text>Chat</Text>
</SafeAreaView>
)
}
export default Chat;