-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathApp.tsx
More file actions
21 lines (17 loc) · 688 Bytes
/
Copy pathApp.tsx
File metadata and controls
21 lines (17 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { NativeBaseProvider } from 'native-base';
import { RevenutDashboard } from './components/Dashboard';
import * as WebBrowser from 'expo-web-browser';
import * as serviceWorkerRegistration from "./src/serviceWorkerRegistration";
/* https://docs.expo.dev/guides/authentication/ */
WebBrowser.maybeCompleteAuthSession();
export default function App() {
return (
<NativeBaseProvider>
<RevenutDashboard />
</NativeBaseProvider>
);
}
// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: https://cra.link/PWA
serviceWorkerRegistration.register();