Rocket.Chat.ReactNative/index.android.js

12 lines
333 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';
2018-03-23 16:55:40 +00:00
import './app/ReactotronConfig';
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);
AppRegistry.registerComponent('RocketChatRN', () => RocketChat);