-
Notifications
You must be signed in to change notification settings - Fork 1
/
App.js
38 lines (31 loc) · 778 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
38
import 'react-native-gesture-handler'
import React from 'react'
import Amplify from 'aws-amplify'
import config from './aws-exports'
import { useKeepAwake } from 'expo-keep-awake'
import { UserProvider } from './app/context/User'
import { NotificationsProvider } from './app/context/Notifications'
import { ModalsProvider } from './app/context/Modals'
import RootStack from './app/screens/stacks/RootStack'
Amplify.configure({
...config,
Auth: {
mandatorySignIn: false
},
Analytics: {
disabled: true
}
})
const App = () => {
useKeepAwake()
return (
<UserProvider>
<NotificationsProvider>
<ModalsProvider>
<RootStack />
</ModalsProvider>
</NotificationsProvider>
</UserProvider>
)
}
export default App