aretherecookies-mobile/index.ios.js
2019-05-12 10:04:12 -05:00

7 lines
306 B
JavaScript

import React, { Component } from 'react';
import { AppRegistry, UIManager, Text, View } from 'react-native';
import App from './js/App';
UIManager.setLayoutAnimationEnabledExperimental && UIManager.setLayoutAnimationEnabledExperimental(true);
AppRegistry.registerComponent('AreThereCookies', () => App);