-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.ios.js
More file actions
39 lines (31 loc) · 780 Bytes
/
index.ios.js
File metadata and controls
39 lines (31 loc) · 780 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* React Native Webpack Starter Kit
* https://github.com/jhabdas/react-native-webpack-starter-kit
*/
import React, {AppRegistry, Component} from 'react-native';
import { Provider } from 'react-redux';
import store from './src/store';
import Router from './src/router';
/*Raven.config('http://6f138f13e4754b139769570b528c0220@sentry01.family.rambler.ru/8', {
logger: 'javascript',
whitelistUrls: [
/rambler\.ru/,
/letidor\.lh\.ru/,
/\.family\.rambler\.ru/
],
ignoreErrors: [
'fb_xd_fragment'
]
}).install()*/
class Root extends Component {
componentDidMount() {
}
render() {
return (
<Provider store={store}>
<Router {...this.props} />
</Provider>
);
}
}
AppRegistry.registerComponent('App', () => Root);