Rocket.Chat.ReactNative/index.android.js

15 lines
424 B
JavaScript
Raw Normal View History

import 'babel-polyfill';
import 'regenerator-runtime/runtime';
2018-02-09 01:21:29 +00:00
import { AppRegistry, UIManager } from 'react-native';
2017-11-18 20:17:24 +00:00
import './app/push';
import RocketChat from './app/index';
2017-11-18 20:17:24 +00:00
2018-02-09 01:21:29 +00:00
UIManager.setLayoutAnimationEnabledExperimental(true);
// import './app/ReactotronConfig';
// import { AppRegistry } from 'react-native';
// import Routes from './app/routes';
//
AppRegistry.registerComponent('RocketChatRN', () => RocketChat);