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

10 lines
238 B
TypeScript
Raw Permalink Normal View History

2025-03-25 12:08:42 +00:00
import { Text } from "react-native";
import { SafeAreaView } from "react-native-safe-area-context";
const Chat =() => {
return(
<SafeAreaView>
<Text>Chat</Text>
</SafeAreaView>
)
}
export default Chat;