-
Notifications
You must be signed in to change notification settings - Fork 1
/
App.js
37 lines (28 loc) · 807 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
33
34
35
36
37
import React, { Component } from 'react';
import { createRootNavigator } from './app/navigation/RootNavigator';
import { isSignedIn } from './app/utils/helpers';
export default class App extends Component {
constructor(props) {
super(props);
this.state = {
signedIn: false,
checkedSignIn: false
};
}
componentWillMount() {
isSignedIn()
.then(res => this.setState({ signedIn: res, checkedSignIn: true }))
.catch(err => alert("An error occurred"));
}
render() {
const { checkedSignIn, signedIn } = this.state;
// If we haven't checked AsyncStorage yet, don't render anything (better ways to do this)
if (!checkedSignIn) {
return null
}
const Layout = createRootNavigator(signedIn);
return (
<Layout />
)
}
}