frostbyte-native/App.tsx
2023-12-14 20:21:57 +01:00

15 lines
425 B
TypeScript

import { StatusBar } from "expo-status-bar";
import { Text, View } from "react-native";
import { style } from "./src/util/style";
import { PostsContainer } from "./src/components/PostsContainer";
export default function App(): JSX.Element {
return (
<View style={style.app}>
<Text>Open up App.tsx to start working on your app!</Text>
<StatusBar style="auto" />
<PostsContainer />
</View>
);
}