This commit is contained in:
Patryk
2025-04-01 21:10:54 +02:00
commit fd40827e6d
17 changed files with 14608 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import { Stack } from "expo-router";
export default function RootLayout() {
return <Stack />;
}

View File

@@ -0,0 +1,15 @@
import { Text, View } from "react-native";
export default function Index() {
return (
<View
style={{
flex: 1,
justifyContent: "center",
alignItems: "center",
}}
>
<Text>Edit app/index.tsx to edit this screen.</Text>
</View>
);
}