first tests

This commit is contained in:
Jakob Stornig 2023-11-30 01:48:22 +01:00
parent 66d33ce07e
commit 55c9f605ff
11 changed files with 14523 additions and 84 deletions

14
app/index.jsx Normal file
View file

@ -0,0 +1,14 @@
import { View, Text, Button} from 'react-native'
import * as react from 'react'
import { Link } from 'expo-router'
export default function Page() {
return (
<View style={{flex: 1, justifyContent:'center', alignItems: 'center'}}>
<Text>Hello World</Text>
</View>
)
}