Initial commit
Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
commit
fd2e3507ce
19 changed files with 13091 additions and 0 deletions
5
app/_layout.tsx
Normal file
5
app/_layout.tsx
Normal file
|
@ -0,0 +1,5 @@
|
|||
import { Stack } from "expo-router";
|
||||
|
||||
export default function RootLayout() {
|
||||
return <Stack />;
|
||||
}
|
15
app/index.tsx
Normal file
15
app/index.tsx
Normal 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>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue