-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ios.js
48 lines (43 loc) · 1.08 KB
/
index.ios.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
46
47
48
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import { RootContainer } from 'react-relay';
import { Provider } from 'react-redux';
import {
AppRegistry,
NavigatorIOS,
} from 'react-native';
import ReduxScene from './src/redux/components/ReduxScene';
import GraphQLSceneContainer from './src/redux/containers/GraphQLSceneContainer';
import store from './src/redux/store';
export default class test extends Component {
goHome = () => {
console.log('going home');
const { navigator } = this.refs;
navigator.replace({
component: GraphQLSceneContainer,
title: 'Home',
});
};
render() {
return (
<Provider store={ store }>
<NavigatorIOS
ref="navigator"
initialRoute={{
component: ReduxScene,
title: 'Main',
passProps: {
goHome: this.goHome,
},
}}
style={{ flex: 1 }}
/>
</Provider>
);
}
}
AppRegistry.registerComponent('test', () => test);