Files
hackathon-opti-1a67c9077937…/frontend/src/app/profile.tsx

16 lines
317 B
TypeScript

import { View, Text } from "react-native";
export default function ProfileScreen() {
return (
<View
style={{
flex: 1,
justifyContent: "center",
alignItems: "center",
}}
>
<Text>Perfil</Text>
</View>
);
}