stripped down version expo app ready for development

This commit is contained in:
Fhj0607
2026-04-15 10:16:09 +02:00
parent 35e36b6292
commit e38d6f9121
7 changed files with 12 additions and 296 deletions

9
app/index.tsx Normal file
View File

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