-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
35 lines (30 loc) · 760 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
import 'react-native-gesture-handler';
import { Provider } from 'react-redux';
import { store } from './src/redux/store';
import {
useFonts,
Roboto_400Regular,
Roboto_500Medium,
Roboto_700Bold,
} from '@expo-google-fonts/roboto';
import { ThemeProvider } from './src/shared/theme/ThemeContext';
import MainNavigation from './src/components/Main';
import { StatusBarLine } from './src/components/StatusBar';
export default function App() {
let [fontsLoaded] = useFonts({
Roboto_400Regular,
Roboto_500Medium,
Roboto_700Bold,
});
if (!fontsLoaded) {
return null;
}
return (
<ThemeProvider>
<Provider store={store}>
<StatusBarLine />
<MainNavigation />
</Provider>
</ThemeProvider>
);
}