-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
41 lines (38 loc) · 921 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
35
36
37
38
39
40
41
import "intl";
import "intl/locale-data/jsonp/pt-BR";
import {
Archivo_400Regular,
Archivo_500Medium,
Archivo_600SemiBold,
} from "@expo-google-fonts/archivo";
import {
Inter_400Regular,
Inter_500Medium,
useFonts,
} from "@expo-google-fonts/inter";
import AppLoading from "expo-app-loading";
import React from "react";
import { Routes } from "routes";
import { AppStackRoutes } from "routes/app.stack.routes";
import { ThemeProvider } from "styled-components";
import theme from "styles/theme";
import { AppProvider } from "hooks";
export default function App() {
const [fontsLoaded] = useFonts({
Inter_400Regular,
Inter_500Medium,
Archivo_400Regular,
Archivo_500Medium,
Archivo_600SemiBold,
});
if (!fontsLoaded) {
return <AppLoading />;
}
return (
<ThemeProvider theme={theme}>
<AppProvider>
<Routes />
</AppProvider>
</ThemeProvider>
);
}