-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathindex.js
More file actions
25 lines (21 loc) · 741 Bytes
/
index.js
File metadata and controls
25 lines (21 loc) · 741 Bytes
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
/** @format */
import 'react-native-gesture-handler';
import { AppRegistry, LogBox } from 'react-native';
const IGNORED_LOGS = [
'Warning: componentWillMount is deprecated',
'Warning: componentWillReceiveProps is deprecated',
'Warning: componentWillUpdate is deprecated',
'RCTRootView cancelTouches',
'Require cycle',
'long period',
'Material Top Tab Navigator:',
'ViewPropTypes will be removed from React Native.',
'Non-serializable values were found in the navigation state.'
];
LogBox.ignoreLogs(IGNORED_LOGS);
import 'fast-text-encoding';
import './shims/crypto.js';
import './shims/buffer.js';
import App from './App';
import {name as appName} from './app.json';
AppRegistry.registerComponent(appName, () => App);