2018-03-17 22:39:21 +02:00
|
|
|
import './shim.js';
|
|
|
|
import MainBottomTabs from './MainBottomTabs';
|
2018-10-06 02:21:38 +01:00
|
|
|
import Sentry from 'sentry-expo';
|
|
|
|
Sentry.config('https://23377936131848ca8003448a893cb622@sentry.io/1295736').install();
|
2018-03-17 20:43:34 +02:00
|
|
|
|
2018-05-28 20:18:11 +01:00
|
|
|
/** @type {AppStorage} */
|
2018-03-17 22:39:21 +02:00
|
|
|
require('./BlueApp');
|
2018-03-17 20:43:34 +02:00
|
|
|
|
2018-03-17 22:39:21 +02:00
|
|
|
if (!Error.captureStackTrace) {
|
|
|
|
// captureStackTrace is only available when debugging
|
|
|
|
Error.captureStackTrace = () => {};
|
2018-03-17 20:43:34 +02:00
|
|
|
}
|
|
|
|
|
2018-10-30 22:23:48 -04:00
|
|
|
export default MainBottomTabs;
|