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-13 22:17:21 +01:00
|
|
|
|
2023-12-14 20:21:57 +01:00
|
|
|
import { PostsContainer } from "./src/components/PostsContainer";
|
2023-12-14 19:02:47 +01:00
|
|
|
|
2023-12-14 20:09:12 +01:00
|
|
|
export default function App(): JSX.Element {
|
2023-12-13 22:17:21 +01:00
|
|
|
return (
|
2023-12-14 20:21:57 +01:00
|
|
|
<View style={style.app}>
|
2023-12-13 22:17:21 +01:00
|
|
|
<Text>Open up App.tsx to start working on your app!</Text>
|
|
|
|
<StatusBar style="auto" />
|
2023-12-14 19:02:47 +01:00
|
|
|
<PostsContainer />
|
2023-12-13 22:17:21 +01:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|