-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
34 lines (31 loc) · 987 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
import React from 'react';
import { ApolloClient, InMemoryCache, ApolloProvider, HttpLink} from '@apollo/client';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import HomeScreen from './screens/home'
import {AppStateProvider} from './appcontext'
import { REACT_APP_API_KEY,REACT_APP_URL } from '@env'
const client = new ApolloClient({
cache: new InMemoryCache(),
link: new HttpLink({
uri: REACT_APP_URL,
headers: {
'Accept-Language': "en_US",
authorization: `Bearer ${REACT_APP_API_KEY}`,
},
})
});
const Stack = createStackNavigator();
export default function App() {
return (
<AppStateProvider>
<ApolloProvider client={client}>
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen name="Fickle" component={HomeScreen} />
</Stack.Navigator>
</NavigationContainer>
</ApolloProvider>
</AppStateProvider>
);
}