ecency-mobile/index.js

14 lines
383 B
JavaScript
Raw Normal View History

import { AppRegistry } from 'react-native';
2019-05-11 15:06:11 +03:00
import AppCenter from 'appcenter';
import { name as appName } from './app.json';
2019-01-05 12:19:13 +03:00
import 'core-js';
2018-12-06 15:23:12 +03:00
import 'intl';
2019-12-26 06:18:36 +03:00
import 'intl/locale-data/jsonp/en-US';
2019-01-05 12:19:13 +03:00
// set check frequency options
2020-07-17 16:39:59 +03:00
const EcencyApp = require('./App').default;
2019-01-04 12:43:39 +03:00
2019-05-11 15:06:11 +03:00
AppCenter.setLogLevel(AppCenter.LogLevel.VERBOSE);
2020-07-17 16:39:59 +03:00
AppRegistry.registerComponent(appName, () => EcencyApp);