-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathApp.js
46 lines (41 loc) · 1.17 KB
/
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
38
39
40
41
42
43
44
45
46
import React, { useState } from "react";
import AppLoading from "expo-app-loading";
import * as Font from "expo-font";
import { createStore, combineReducers, applyMiddleware } from "redux";
import ReduxThunk from "redux-thunk";
import { Provider } from "react-redux";
import AuthReducer from "./store/reducers/Auth";
import UsersReducer from "./store/reducers/AllUsers";
import NavContainer from "./navigation/NavContainer";
const RootReducer = combineReducers({
auth: AuthReducer,
users: UsersReducer,
});
const store = createStore(RootReducer, applyMiddleware(ReduxThunk));
const fetchFonts = () => {
return Font.loadAsync({
"open-sans": require("./assets/fonts/open-sans-regular.ttf"),
"open-sans-bold": require("./assets/fonts/open-sans-bold.ttf"),
});
};
export default function App() {
const [fontLoaded, setFontLoaded] = useState(false);
if (!fontLoaded) {
return (
<AppLoading
startAsync={fetchFonts}
onFinish={() => {
setFontLoaded(true);
}}
onError={(err) => {
console.log(err);
}}
/>
);
}
return (
<Provider store={store}>
<NavContainer />
</Provider>
);
}