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

10 lines
247 B
TypeScript

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