aretherecookies-mobile/index.ios.js

8 lines
306 B
JavaScript
Raw Normal View History

2017-01-16 20:53:55 -06:00
import React, { Component } from 'react';
2019-04-27 11:31:19 -05:00
import { AppRegistry, UIManager, Text, View } from 'react-native';
2019-05-05 12:16:58 -05:00
import App from './js/App';
2019-04-27 11:31:19 -05:00
2019-05-05 12:16:58 -05:00
UIManager.setLayoutAnimationEnabledExperimental && UIManager.setLayoutAnimationEnabledExperimental(true);
2019-04-27 11:31:19 -05:00
2019-05-05 12:16:58 -05:00
AppRegistry.registerComponent('AreThereCookies', () => App);