-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.js
45 lines (40 loc) · 1.26 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Better and recommended replacement as rn-nodeify
import 'node-libs-react-native/globals';
import 'expo-asset';
import 'intl';
import 'intl/locale-data/jsonp/en';
import { registerRootComponent } from 'expo';
import { createElement } from 'react';
import { Provider } from 'react-redux';
import { TailwindProvider } from 'tailwind-rn';
import utilities from './src/styles/tailwind.json';
import App from './src/App';
import plugins from './src/plugins';
import store from './src/store';
import 'moment/locale/es';
import 'moment/locale/en-in';
import { decode, encode } from 'base-64';
import { enableScreens } from 'react-native-screens';
enableScreens(false);
/**
* Axios removed support for base64 encoding, so we need to provide
* a polyfill
*/
// eslint-disable-next-line no-undef
if (!global.btoa) {
// eslint-disable-next-line no-undef
global.btoa = encode;
}
// eslint-disable-next-line no-undef
if (!global.atob) {
// eslint-disable-next-line no-undef
global.atob = decode;
}
// Polyfill
// eslint-disable-next-line no-undef
process.nextTick = setImmediate;
// Installs plugins
plugins.forEach((plugin) => plugin.install(store));
registerRootComponent(() =>
createElement(Provider, { store }, createElement(TailwindProvider, { utilities }, createElement(App))),
);