aretherecookies-mobile/index.android.js
Bart Akeley 1bfc861c08 use react-router-native instead of Navigator
Navigator was becoming cumbersome due to prop passing up the hierarchy. react-router-native is a more declartive approach and utilized react context to avoid prop passing.
2017-04-09 23:28:28 -05:00

12 lines
341 B
JavaScript

/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import { AppRegistry, UIManager } from 'react-native';
import App from './js/App';
UIManager.setLayoutAnimationEnabledExperimental && UIManager.setLayoutAnimationEnabledExperimental(true);
AppRegistry.registerComponent('AreThereCookies', () => App);