fieldnotes/index.js

17 lines
380 B
JavaScript

/** @format */
import * as Sentry from '@sentry/react-native';
import { SENTRY_DSN, ENVIRONMENT } from 'react-native-dotenv';
Sentry.init({
dsn: SENTRY_DSN,
});
Sentry.setTag('environment', ENVIRONMENT);
import { AppRegistry } from 'react-native';
import App from './src/app';
import {name as appName} from './app.json';
AppRegistry.registerComponent(appName, () => App);