aretherecookies-mobile/index.android.js

13 lines
341 B
JavaScript
Raw Normal View History

2017-01-16 20:53:55 -06:00
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import { AppRegistry, UIManager } from 'react-native';
2017-03-05 18:09:01 -06:00
import App from './js/App';
2017-01-28 23:13:20 -06:00
2017-03-05 18:09:01 -06:00
UIManager.setLayoutAnimationEnabledExperimental && UIManager.setLayoutAnimationEnabledExperimental(true);
2017-01-16 20:53:55 -06:00
AppRegistry.registerComponent('AreThereCookies', () => App);