import React, { useEffect } from 'react'; import './shim.js'; import { AppRegistry } from 'react-native'; import App from './App'; const A = require('./analytics'); if (!Error.captureStackTrace) { // captureStackTrace is only available when debugging Error.captureStackTrace = () => {}; } const BlueAppComponent = () => { useEffect(() => { A(A.ENUM.INIT); }, []); return ; }; AppRegistry.registerComponent('BlueWallet', () => BlueAppComponent);