Rocket.Chat.ReactNative/index.js

33 lines
1.0 KiB
JavaScript
Raw Normal View History

import 'react-native-gesture-handler';
2019-04-17 18:57:46 +00:00
import 'react-native-console-time-polyfill';
2019-03-12 16:23:06 +00:00
import { AppRegistry } from 'react-native';
2019-07-18 17:44:02 +00:00
import { name as appName, share as shareName } from './app.json';
2019-03-12 16:23:06 +00:00
if (__DEV__) {
require('./app/ReactotronConfig');
} else {
console.log = () => {};
console.time = () => {};
console.timeLog = () => {};
console.timeEnd = () => {};
console.warn = () => {};
console.count = () => {};
console.countReset = () => {};
console.error = () => {};
console.info = () => {};
}
2019-07-18 17:44:02 +00:00
AppRegistry.registerComponent(appName, () => require('./app/index').default);
AppRegistry.registerComponent(shareName, () => require('./app/share').default);
2019-03-12 16:23:06 +00:00
// For storybook, comment everything above and uncomment below
// import 'react-native-gesture-handler';
// import 'react-native-console-time-polyfill';
// import { AppRegistry } from 'react-native';
// import { name as appName } from './app.json';
// require('./app/ReactotronConfig');
// AppRegistry.registerComponent(appName, () => require('./.storybook/index').default);