Files
musicland/src/screens/Profile/Profile.js
T
Philip Cesar Garay 41636b5dbc update
2025-08-13 21:03:58 +08:00

13 lines
189 B
JavaScript

import { View, Text } from "react-native";
import React from "react";
const Profile = () => {
return (
<View>
<Text>Profile</Text>
</View>
);
};
export default Profile;