-
Notifications
You must be signed in to change notification settings - Fork 4
/
App.js
20 lines (18 loc) · 833 Bytes
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* eslint-disable react/react-in-jsx-scope */
import { StatusBar } from "expo-status-bar";
import { LogBox } from "react-native";
import { Provider } from "react-redux";
import StackNavigator from "./StackNavigation";
import store from "./store";
//This is to ignore logs
LogBox.ignoreLogs(["AsyncStorage has been extracted from react-native core and will be removed in a future release. It can now be installed and imported from '@react-native-async-storage/async-storage' instead of 'react-native'. See https://github.com/react-native-async-storage/async-storage",
"Non-serializable values were found in the navigation state. Check:"
]);
export default function App() {
return (
<Provider store={store}>
<StackNavigator />
<StatusBar style="auto" />
</Provider>
);
}