feat: setup app navigation and tabs

This commit is contained in:
imsophis
2026-05-22 18:13:22 -06:00
parent 34dbfd051b
commit 44cfca0eeb
7 changed files with 133 additions and 11 deletions

View File

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