-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
32 lines (28 loc) · 756 Bytes
/
App.js
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
import * as React from 'react';
import MainContainer from './app/MainContainer';
import HomeStackScreen from './app/MainContainer';
import Auth_App from './app/authentication_screen/Auth_App';
import AsyncStorage from '@react-native-async-storage/async-storage';
function App() {
const [email, setEmail] = React.useState(null);
AsyncStorage.getItem('email').then((value) => {
if (value === null) {
AsyncStorage.setItem('email', 'none');
setEmail('none');
} else {
setEmail(value);
}
});
// if async storage email is none, then show auth app, else show main container
if (email === 'none') {
return (
<Auth_App />
);
}
else {
return (
<MainContainer />
);
}
}
export default App;