-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathindex.js
More file actions
25 lines (21 loc) · 673 Bytes
/
index.js
File metadata and controls
25 lines (21 loc) · 673 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
import React from 'react'
import { AppRegistry, StatusBar, View } from 'react-native';
import {} from './src/utils/ScreenUtils'
import { Provider } from 'react-redux'
import Store from './src/utils/ConfigRedux'
import CodePush from 'react-native-code-push'
import App from './App'
class Root extends React.Component {
render() {
return (
<Provider store={Store}>
<App />
</Provider>
);
}
}
// var wrapper = CodePush({
// checkFrequency: CodePush.CheckFrequency.ON_APP_RESUME,
// installMode: CodePush.InstallMode.ON_NEXT_RESTART
// })(Root);
AppRegistry.registerComponent('colavideoapp', () => Root);