Rocket.Chat.ReactNative/index.ios.js

10 lines
266 B
JavaScript
Raw Normal View History

import 'babel-polyfill';
import 'regenerator-runtime/runtime';
import { AppRegistry } 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';
2018-03-23 16:55:40 +00:00
AppRegistry.registerComponent('RocketChatRN', () => RocketChat);