Files
Galaxies-my-expo-app/App.tsx
T
Dennis Hundertmark 08fbd0443e Initial commit
Generated by create-expo-stack 2.14.1
2025-03-12 16:00:34 +01:00

14 lines
278 B
TypeScript

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" />
</>
);
}