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

10 lines
247 B
TypeScript
Raw 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 profile =() => {
return(
<SafeAreaView>
<Text>Profile</Text>
</SafeAreaView>
)
}
export default profile;