Initial commit

Generated by create-expo-stack 2.14.1
This commit is contained in:
Dennis Hundertmark
2025-03-12 16:00:34 +01:00
commit 08fbd0443e
20 changed files with 15194 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { ScreenContent } from 'components/ScreenContent';
import { StatusBar } from 'expo-status-bar';
import './global.css';
export default function App() {
return (
<>
<ScreenContent title="Home" path="App.tsx" />
<StatusBar style="auto" />
</>
);
}