mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 10:12:01 +01:00
15 lines
398 B
JavaScript
15 lines
398 B
JavaScript
import './shim.js';
|
|
import MainBottomTabs from './MainBottomTabs';
|
|
import Sentry from 'sentry-expo';
|
|
Sentry.config('https://23377936131848ca8003448a893cb622@sentry.io/1295736').install();
|
|
|
|
/** @type {AppStorage} */
|
|
require('./BlueApp');
|
|
|
|
if (!Error.captureStackTrace) {
|
|
// captureStackTrace is only available when debugging
|
|
Error.captureStackTrace = () => {};
|
|
}
|
|
|
|
export default MainBottomTabs;
|