frostbyte-native/App.tsx

15 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}>
2023-12-14 23:39:53 +01:00
<StatusBar style="light" />
<Text>Open up App.tsx to start working on your app!</Text>
<PostsContainer />
</View>
);
}