mirror of
https://gitlab.com/wheres-the-tp/ui-mobile.git
synced 2026-01-25 07:34:55 -06:00
7 lines
306 B
JavaScript
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);
|