You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mobile/app/ProfileScreen.tsx

13 lines
335 B

import {SafeAreaView, View} from "react-native";
import {Text} from "react-native";
export default function ProfileScreen() {
return (
<SafeAreaView>
<View>
<Text className="m-4">Edit src/screen/ProfileScreen.tsx to edit this screen.</Text>
</View>
</SafeAreaView>
);
}