13 lines
322 B
JavaScript
13 lines
322 B
JavaScript
import 'babel-polyfill';
|
|
import 'regenerator-runtime/runtime';
|
|
import { AppRegistry } from 'react-native';
|
|
|
|
import './app/push';
|
|
import RocketChat from './app/index';
|
|
|
|
|
|
// import { AppRegistry } from 'react-native';
|
|
// import Routes from './app/routes';
|
|
//
|
|
AppRegistry.registerComponent('RocketChatRN', () => RocketChat);
|