08fbd0443e
Generated by create-expo-stack 2.14.1
14 lines
278 B
TypeScript
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" />
|
|
</>
|
|
);
|
|
}
|