Initial commit

Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
Sid 2025-07-05 10:28:22 +02:00
commit fd2e3507ce
Signed by: sidski
GPG key ID: D2BBDF3EDE6BA9A6
19 changed files with 13091 additions and 0 deletions

5
app/_layout.tsx Normal file
View file

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

15
app/index.tsx Normal file
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>
);
}