frostbyte-native/App.tsx

16 lines
425 B
TypeScript
Raw Normal View History

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