Correct color for navbar icons
This commit is contained in:
parent
605d0990d3
commit
60c0d4f746
1 changed files with 1 additions and 2 deletions
3
App.tsx
3
App.tsx
|
@ -3,12 +3,11 @@ import { Text, View } from "react-native";
|
||||||
import { style } from "./src/util/style";
|
import { style } from "./src/util/style";
|
||||||
|
|
||||||
import { PostsContainer } from "./src/components/PostsContainer";
|
import { PostsContainer } from "./src/components/PostsContainer";
|
||||||
|
|
||||||
export default function App(): JSX.Element {
|
export default function App(): JSX.Element {
|
||||||
return (
|
return (
|
||||||
<View style={style.app}>
|
<View style={style.app}>
|
||||||
|
<StatusBar style="light" />
|
||||||
<Text>Open up App.tsx to start working on your app!</Text>
|
<Text>Open up App.tsx to start working on your app!</Text>
|
||||||
<StatusBar style="auto" />
|
|
||||||
<PostsContainer />
|
<PostsContainer />
|
||||||
</View>
|
</View>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue