remove unused components and files to clean up the project structure

This commit is contained in:
2025-07-27 00:09:15 +02:00
parent c50a1bb91a
commit 1e0b62efd8
22 changed files with 19 additions and 852 deletions

16
app/index.tsx Normal file
View File

@@ -0,0 +1,16 @@
import React from "react";
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>
);
}