-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
21 lines (19 loc) · 724 Bytes
/
App.js
File metadata and controls
21 lines (19 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//*******************************************************************************
//
// IMPORTANT: Make sure to check package.json to have all required dependecies installed.
//
//*******************************************************************************
import React from 'react';
import { AuthenticatedUserProvider } from './utils/AuthenticatedUserProvider';
import { UserInfoProvider } from './utils/UserInfoProvider';
import RootNavigator from './navigation/RootNavigator';
// Entry point
export default function App() {
return (
<AuthenticatedUserProvider>
<UserInfoProvider>
<RootNavigator />
</UserInfoProvider>
</AuthenticatedUserProvider>
);
}