forked from functionland/fx-fotos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
23 lines (20 loc) · 920 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// This is the first file that ReactNative will run when it starts up.
//
// We jump out of here immediately and into our main entry point instead.
//
// It is possible to have React Native load our main module first, but we'd have to
// change that in both AppDelegate.m and MainApplication.java. This would have the
// side effect of breaking other tooling like mobile-center and react-native-rename.
//
// It's easier just to leave it here.
import "node-libs-react-native/globals.js";
import "./shim.js"
import 'react-native-get-random-values'
import App from "./app/app.tsx"
import { AppRegistry } from "react-native"
import BackgroundFetch from "react-native-background-fetch"
import { SyncService } from "./app/services"
AppRegistry.registerComponent("fotos", () => App)
/// register the backgroyndFetch handler.
BackgroundFetch.registerHeadlessTask(SyncService.backgroundFetchHeadlessTask)
export default App