15 lines
425 B
TypeScript
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>
|
|
);
|
|
}
|