-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
34 lines (31 loc) · 940 Bytes
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import React, { useEffect } from 'react';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import { NavigationContainer } from '@react-navigation/native';
import RootApp from './src/RootApp';
import { StatusBar } from 'react-native';
import { GestureHandlerRootView } from 'react-native-gesture-handler';
import { Host } from 'react-native-portalize';
import { Storage } from './src/helpers/storage';
import { RecoilRoot } from 'recoil';
const App = () => {
const init = async () => {
await Storage.set('isLogin', 'false');
};
useEffect(() => {
init();
}, []);
return (
<GestureHandlerRootView style={{ flex: 1 }}>
<SafeAreaProvider>
<Host>
<NavigationContainer>
<RecoilRoot>
<RootApp />
</RecoilRoot>
</NavigationContainer>
</Host>
</SafeAreaProvider>
</GestureHandlerRootView>
);
};
export default App;